Rename CefBase to CefBaseRefCounted (issue #2090)

This commit is contained in:
Marshall Greenblatt
2017-02-09 17:07:43 -05:00
parent 07ba48b082
commit 0afcb82ee6
679 changed files with 2066 additions and 1962 deletions

View File

@@ -99,7 +99,7 @@ bool CefWaitableEventCToCpp::TimedWait(int64 max_ms) {
CefWaitableEventCToCpp::CefWaitableEventCToCpp() {
}
template<> cef_waitable_event_t* CefCToCpp<CefWaitableEventCToCpp,
template<> cef_waitable_event_t* CefCToCppRefCounted<CefWaitableEventCToCpp,
CefWaitableEvent, cef_waitable_event_t>::UnwrapDerived(CefWrapperType type,
CefWaitableEvent* c) {
NOTREACHED() << "Unexpected class type: " << type;
@@ -107,9 +107,9 @@ template<> cef_waitable_event_t* CefCToCpp<CefWaitableEventCToCpp,
}
#if DCHECK_IS_ON()
template<> base::AtomicRefCount CefCToCpp<CefWaitableEventCToCpp,
template<> base::AtomicRefCount CefCToCppRefCounted<CefWaitableEventCToCpp,
CefWaitableEvent, cef_waitable_event_t>::DebugObjCt = 0;
#endif
template<> CefWrapperType CefCToCpp<CefWaitableEventCToCpp, CefWaitableEvent,
cef_waitable_event_t>::kWrapperType = WT_WAITABLE_EVENT;
template<> CefWrapperType CefCToCppRefCounted<CefWaitableEventCToCpp,
CefWaitableEvent, cef_waitable_event_t>::kWrapperType = WT_WAITABLE_EVENT;