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

@ -97,7 +97,7 @@ void CefBrowserProcessHandlerCToCpp::OnScheduleMessagePumpWork(int64 delay_ms) {
CefBrowserProcessHandlerCToCpp::CefBrowserProcessHandlerCToCpp() {
}
template<> cef_browser_process_handler_t* CefCToCpp<CefBrowserProcessHandlerCToCpp,
template<> cef_browser_process_handler_t* CefCToCppRefCounted<CefBrowserProcessHandlerCToCpp,
CefBrowserProcessHandler, cef_browser_process_handler_t>::UnwrapDerived(
CefWrapperType type, CefBrowserProcessHandler* c) {
NOTREACHED() << "Unexpected class type: " << type;
@ -105,10 +105,10 @@ template<> cef_browser_process_handler_t* CefCToCpp<CefBrowserProcessHandlerCToC
}
#if DCHECK_IS_ON()
template<> base::AtomicRefCount CefCToCpp<CefBrowserProcessHandlerCToCpp,
template<> base::AtomicRefCount CefCToCppRefCounted<CefBrowserProcessHandlerCToCpp,
CefBrowserProcessHandler, cef_browser_process_handler_t>::DebugObjCt = 0;
#endif
template<> CefWrapperType CefCToCpp<CefBrowserProcessHandlerCToCpp,
template<> CefWrapperType CefCToCppRefCounted<CefBrowserProcessHandlerCToCpp,
CefBrowserProcessHandler, cef_browser_process_handler_t>::kWrapperType =
WT_BROWSER_PROCESS_HANDLER;