2017-02-07 22:25:11 +01:00
|
|
|
// Copyright (c) 2017 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "libcef_dll/cpptoc/base_scoped_cpptoc.h"
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
CefBaseScopedCppToC::CefBaseScopedCppToC() {}
|
2017-02-07 22:25:11 +01:00
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefOwnPtr<CefBaseScoped>
|
2017-02-07 22:25:11 +01:00
|
|
|
CefCppToCScoped<CefBaseScopedCppToC, CefBaseScoped, cef_base_scoped_t>::
|
|
|
|
UnwrapDerivedOwn(CefWrapperType type, cef_base_scoped_t* s) {
|
|
|
|
NOTREACHED();
|
|
|
|
return CefOwnPtr<CefBaseScoped>();
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefRawPtr<CefBaseScoped>
|
2017-02-07 22:25:11 +01:00
|
|
|
CefCppToCScoped<CefBaseScopedCppToC, CefBaseScoped, cef_base_scoped_t>::
|
|
|
|
UnwrapDerivedRaw(CefWrapperType type, cef_base_scoped_t* s) {
|
|
|
|
NOTREACHED();
|
2020-01-15 14:36:24 +01:00
|
|
|
return nullptr;
|
2017-02-07 22:25:11 +01:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefWrapperType CefCppToCScoped<CefBaseScopedCppToC,
|
|
|
|
CefBaseScoped,
|
|
|
|
cef_base_scoped_t>::kWrapperType =
|
|
|
|
WT_BASE_SCOPED;
|