2009-03-05 02:10:06 +01:00
|
|
|
// Copyright (c) 2009 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.
|
|
|
|
|
|
|
|
#ifndef _BROWSER_CPPTOC_H
|
|
|
|
#define _BROWSER_CPPTOC_H
|
|
|
|
|
|
|
|
#ifndef BUILDING_CEF_SHARED
|
|
|
|
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
|
|
|
|
#else // BUILDING_CEF_SHARED
|
|
|
|
|
|
|
|
#include "cef.h"
|
|
|
|
#include "cef_capi.h"
|
|
|
|
#include "cpptoc.h"
|
|
|
|
|
|
|
|
|
|
|
|
// Wrap a C++ browser class with a C browser structure.
|
|
|
|
// This class may be instantiated and accessed DLL-side only.
|
2009-05-28 02:31:21 +02:00
|
|
|
class CefBrowserCppToC
|
|
|
|
: public CefCppToC<CefBrowserCppToC, CefBrowser, cef_browser_t>
|
2009-03-05 02:10:06 +01:00
|
|
|
{
|
|
|
|
public:
|
2009-03-08 03:26:16 +01:00
|
|
|
CefBrowserCppToC(CefBrowser* cls);
|
2009-03-05 02:10:06 +01:00
|
|
|
virtual ~CefBrowserCppToC() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // BUILDING_CEF_SHARED
|
|
|
|
#endif // _BROWSER_CPPTOC_H
|