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:
@ -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;
|
||||
|
Reference in New Issue
Block a user