• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2015 The Chromium Embedded Framework Authors. All rights
2 // reserved. Use of this source code is governed by a BSD-style license that
3 // can be found in the LICENSE file.
4 
5 #include "libcef_dll/ctocpp/base_ref_counted_ctocpp.h"
6 
CefBaseRefCountedCToCpp()7 CefBaseRefCountedCToCpp::CefBaseRefCountedCToCpp() {}
8 
9 template <>
10 cef_base_ref_counted_t* CefCToCppRefCounted<
11     CefBaseRefCountedCToCpp,
12     CefBaseRefCounted,
UnwrapDerived(CefWrapperType type,CefBaseRefCounted * c)13     cef_base_ref_counted_t>::UnwrapDerived(CefWrapperType type,
14                                            CefBaseRefCounted* c) {
15   NOTREACHED();
16   return NULL;
17 }
18 
19 template <>
20 CefWrapperType CefCToCppRefCounted<CefBaseRefCountedCToCpp,
21                                    CefBaseRefCounted,
22                                    cef_base_ref_counted_t>::kWrapperType =
23     WT_BASE_REF_COUNTED;
24