mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Break cef.h into multiple headers (issue #142).
- Move wrapper classes from cef_wrapper.h to wrapper/ directory. - Move C API functions/classes from cef_capi.h to capi/ directory. - Move global function implementations from cef_context.cc to *_impl.cc files. - Output auto-generated file paths in cef_paths.gypi. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@442 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -42,7 +42,6 @@ CefRefPtr<CefLifeSpanHandler> CefClientCToCpp::GetLifeSpanHandler()
|
||||
return CefLifeSpanHandlerCToCpp::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
CefRefPtr<CefLoadHandler> CefClientCToCpp::GetLoadHandler()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_load_handler))
|
||||
@@ -57,7 +56,6 @@ CefRefPtr<CefLoadHandler> CefClientCToCpp::GetLoadHandler()
|
||||
return CefLoadHandlerCToCpp::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
CefRefPtr<CefRequestHandler> CefClientCToCpp::GetRequestHandler()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_request_handler))
|
||||
@@ -72,7 +70,6 @@ CefRefPtr<CefRequestHandler> CefClientCToCpp::GetRequestHandler()
|
||||
return CefRequestHandlerCToCpp::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
CefRefPtr<CefDisplayHandler> CefClientCToCpp::GetDisplayHandler()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_display_handler))
|
||||
@@ -87,7 +84,6 @@ CefRefPtr<CefDisplayHandler> CefClientCToCpp::GetDisplayHandler()
|
||||
return CefDisplayHandlerCToCpp::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
CefRefPtr<CefFocusHandler> CefClientCToCpp::GetFocusHandler()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_focus_handler))
|
||||
@@ -102,7 +98,6 @@ CefRefPtr<CefFocusHandler> CefClientCToCpp::GetFocusHandler()
|
||||
return CefFocusHandlerCToCpp::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
CefRefPtr<CefKeyboardHandler> CefClientCToCpp::GetKeyboardHandler()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_keyboard_handler))
|
||||
@@ -117,7 +112,6 @@ CefRefPtr<CefKeyboardHandler> CefClientCToCpp::GetKeyboardHandler()
|
||||
return CefKeyboardHandlerCToCpp::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
CefRefPtr<CefMenuHandler> CefClientCToCpp::GetMenuHandler()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_menu_handler))
|
||||
@@ -132,7 +126,6 @@ CefRefPtr<CefMenuHandler> CefClientCToCpp::GetMenuHandler()
|
||||
return CefMenuHandlerCToCpp::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
CefRefPtr<CefPrintHandler> CefClientCToCpp::GetPrintHandler()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_print_handler))
|
||||
@@ -147,7 +140,6 @@ CefRefPtr<CefPrintHandler> CefClientCToCpp::GetPrintHandler()
|
||||
return CefPrintHandlerCToCpp::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
CefRefPtr<CefFindHandler> CefClientCToCpp::GetFindHandler()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_find_handler))
|
||||
@@ -162,7 +154,6 @@ CefRefPtr<CefFindHandler> CefClientCToCpp::GetFindHandler()
|
||||
return CefFindHandlerCToCpp::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
CefRefPtr<CefJSDialogHandler> CefClientCToCpp::GetJSDialogHandler()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_jsdialog_handler))
|
||||
@@ -177,7 +168,6 @@ CefRefPtr<CefJSDialogHandler> CefClientCToCpp::GetJSDialogHandler()
|
||||
return CefJSDialogHandlerCToCpp::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
CefRefPtr<CefV8ContextHandler> CefClientCToCpp::GetV8ContextHandler()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_v8context_handler))
|
||||
@@ -192,7 +182,6 @@ CefRefPtr<CefV8ContextHandler> CefClientCToCpp::GetV8ContextHandler()
|
||||
return CefV8ContextHandlerCToCpp::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
CefRefPtr<CefRenderHandler> CefClientCToCpp::GetRenderHandler()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_render_handler))
|
||||
@@ -207,7 +196,6 @@ CefRefPtr<CefRenderHandler> CefClientCToCpp::GetRenderHandler()
|
||||
return CefRenderHandlerCToCpp::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
CefRefPtr<CefDragHandler> CefClientCToCpp::GetDragHandler()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_drag_handler))
|
||||
@@ -223,7 +211,6 @@ CefRefPtr<CefDragHandler> CefClientCToCpp::GetDragHandler()
|
||||
}
|
||||
|
||||
|
||||
|
||||
#ifndef NDEBUG
|
||||
template<> long CefCToCpp<CefClientCToCpp, CefClient,
|
||||
cef_client_t>::DebugObjCt = 0;
|
||||
|
Reference in New Issue
Block a user