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:
Marshall Greenblatt
2011-12-23 17:36:30 +00:00
parent 97add0e3b7
commit ff976bc07f
398 changed files with 14181 additions and 10661 deletions

View File

@ -31,7 +31,6 @@ cef_string_userfree_t CEF_CALLBACK v8exception_get_message(
return _retval.DetachToUserFree();
}
cef_string_userfree_t CEF_CALLBACK v8exception_get_source_line(
struct _cef_v8exception_t* self)
{
@ -48,7 +47,6 @@ cef_string_userfree_t CEF_CALLBACK v8exception_get_source_line(
return _retval.DetachToUserFree();
}
cef_string_userfree_t CEF_CALLBACK v8exception_get_script_resource_name(
struct _cef_v8exception_t* self)
{
@ -65,7 +63,6 @@ cef_string_userfree_t CEF_CALLBACK v8exception_get_script_resource_name(
return _retval.DetachToUserFree();
}
int CEF_CALLBACK v8exception_get_line_number(struct _cef_v8exception_t* self)
{
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
@ -81,7 +78,6 @@ int CEF_CALLBACK v8exception_get_line_number(struct _cef_v8exception_t* self)
return _retval;
}
int CEF_CALLBACK v8exception_get_start_position(struct _cef_v8exception_t* self)
{
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
@ -97,7 +93,6 @@ int CEF_CALLBACK v8exception_get_start_position(struct _cef_v8exception_t* self)
return _retval;
}
int CEF_CALLBACK v8exception_get_end_position(struct _cef_v8exception_t* self)
{
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
@ -113,7 +108,6 @@ int CEF_CALLBACK v8exception_get_end_position(struct _cef_v8exception_t* self)
return _retval;
}
int CEF_CALLBACK v8exception_get_start_column(struct _cef_v8exception_t* self)
{
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
@ -129,7 +123,6 @@ int CEF_CALLBACK v8exception_get_start_column(struct _cef_v8exception_t* self)
return _retval;
}
int CEF_CALLBACK v8exception_get_end_column(struct _cef_v8exception_t* self)
{
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
@ -146,7 +139,6 @@ int CEF_CALLBACK v8exception_get_end_column(struct _cef_v8exception_t* self)
}
// CONSTRUCTOR - Do not edit by hand.
CefV8ExceptionCppToC::CefV8ExceptionCppToC(CefV8Exception* cls)