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:
@ -29,7 +29,6 @@ CEF_EXPORT cef_v8context_t* cef_v8context_get_current_context()
|
||||
return CefV8ContextCppToC::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
CEF_EXPORT cef_v8context_t* cef_v8context_get_entered_context()
|
||||
{
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
@ -41,7 +40,6 @@ CEF_EXPORT cef_v8context_t* cef_v8context_get_entered_context()
|
||||
return CefV8ContextCppToC::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
CEF_EXPORT int cef_v8context_in_context()
|
||||
{
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
@ -54,7 +52,6 @@ CEF_EXPORT int cef_v8context_in_context()
|
||||
}
|
||||
|
||||
|
||||
|
||||
// MEMBER FUNCTIONS - Body may be edited by hand.
|
||||
|
||||
cef_browser_t* CEF_CALLBACK v8context_get_browser(struct _cef_v8context_t* self)
|
||||
@ -72,7 +69,6 @@ cef_browser_t* CEF_CALLBACK v8context_get_browser(struct _cef_v8context_t* self)
|
||||
return CefBrowserCppToC::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
cef_frame_t* CEF_CALLBACK v8context_get_frame(struct _cef_v8context_t* self)
|
||||
{
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
@ -88,7 +84,6 @@ cef_frame_t* CEF_CALLBACK v8context_get_frame(struct _cef_v8context_t* self)
|
||||
return CefFrameCppToC::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
struct _cef_v8value_t* CEF_CALLBACK v8context_get_global(
|
||||
struct _cef_v8context_t* self)
|
||||
{
|
||||
@ -105,7 +100,6 @@ struct _cef_v8value_t* CEF_CALLBACK v8context_get_global(
|
||||
return CefV8ValueCppToC::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
int CEF_CALLBACK v8context_enter(struct _cef_v8context_t* self)
|
||||
{
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
@ -121,7 +115,6 @@ int CEF_CALLBACK v8context_enter(struct _cef_v8context_t* self)
|
||||
return _retval;
|
||||
}
|
||||
|
||||
|
||||
int CEF_CALLBACK v8context_exit(struct _cef_v8context_t* self)
|
||||
{
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
@ -137,7 +130,6 @@ int CEF_CALLBACK v8context_exit(struct _cef_v8context_t* self)
|
||||
return _retval;
|
||||
}
|
||||
|
||||
|
||||
int CEF_CALLBACK v8context_is_same(struct _cef_v8context_t* self,
|
||||
struct _cef_v8context_t* that)
|
||||
{
|
||||
@ -160,7 +152,6 @@ int CEF_CALLBACK v8context_is_same(struct _cef_v8context_t* self,
|
||||
}
|
||||
|
||||
|
||||
|
||||
// CONSTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefV8ContextCppToC::CefV8ContextCppToC(CefV8Context* cls)
|
||||
|
Reference in New Issue
Block a user