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

@@ -65,7 +65,7 @@ bool CefLayoutCToCpp::IsValid() {
CefLayoutCToCpp::CefLayoutCToCpp() {
}
template<> cef_layout_t* CefCToCpp<CefLayoutCToCpp, CefLayout,
template<> cef_layout_t* CefCToCppRefCounted<CefLayoutCToCpp, CefLayout,
cef_layout_t>::UnwrapDerived(CefWrapperType type, CefLayout* c) {
if (type == WT_BOX_LAYOUT) {
return reinterpret_cast<cef_layout_t*>(CefBoxLayoutCToCpp::Unwrap(
@@ -80,9 +80,9 @@ template<> cef_layout_t* CefCToCpp<CefLayoutCToCpp, CefLayout,
}
#if DCHECK_IS_ON()
template<> base::AtomicRefCount CefCToCpp<CefLayoutCToCpp, CefLayout,
template<> base::AtomicRefCount CefCToCppRefCounted<CefLayoutCToCpp, CefLayout,
cef_layout_t>::DebugObjCt = 0;
#endif
template<> CefWrapperType CefCToCpp<CefLayoutCToCpp, CefLayout,
template<> CefWrapperType CefCToCppRefCounted<CefLayoutCToCpp, CefLayout,
cef_layout_t>::kWrapperType = WT_LAYOUT;