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 @@ CefString CefV8ExceptionCToCpp::GetMessage()
return _retvalStr;
}
CefString CefV8ExceptionCToCpp::GetSourceLine()
{
if (CEF_MEMBER_MISSING(struct_, get_source_line))
@ -48,7 +47,6 @@ CefString CefV8ExceptionCToCpp::GetSourceLine()
return _retvalStr;
}
CefString CefV8ExceptionCToCpp::GetScriptResourceName()
{
if (CEF_MEMBER_MISSING(struct_, get_script_resource_name))
@ -65,7 +63,6 @@ CefString CefV8ExceptionCToCpp::GetScriptResourceName()
return _retvalStr;
}
int CefV8ExceptionCToCpp::GetLineNumber()
{
if (CEF_MEMBER_MISSING(struct_, get_line_number))
@ -80,7 +77,6 @@ int CefV8ExceptionCToCpp::GetLineNumber()
return _retval;
}
int CefV8ExceptionCToCpp::GetStartPosition()
{
if (CEF_MEMBER_MISSING(struct_, get_start_position))
@ -95,7 +91,6 @@ int CefV8ExceptionCToCpp::GetStartPosition()
return _retval;
}
int CefV8ExceptionCToCpp::GetEndPosition()
{
if (CEF_MEMBER_MISSING(struct_, get_end_position))
@ -110,7 +105,6 @@ int CefV8ExceptionCToCpp::GetEndPosition()
return _retval;
}
int CefV8ExceptionCToCpp::GetStartColumn()
{
if (CEF_MEMBER_MISSING(struct_, get_start_column))
@ -125,7 +119,6 @@ int CefV8ExceptionCToCpp::GetStartColumn()
return _retval;
}
int CefV8ExceptionCToCpp::GetEndColumn()
{
if (CEF_MEMBER_MISSING(struct_, get_end_column))
@ -141,7 +134,6 @@ int CefV8ExceptionCToCpp::GetEndColumn()
}
#ifndef NDEBUG
template<> long CefCToCpp<CefV8ExceptionCToCpp, CefV8Exception,
cef_v8exception_t>::DebugObjCt = 0;