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:
@ -30,7 +30,6 @@ bool CefDragDataCToCpp::IsLink()
|
||||
return _retval?true:false;
|
||||
}
|
||||
|
||||
|
||||
bool CefDragDataCToCpp::IsFragment()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, is_fragment))
|
||||
@ -45,7 +44,6 @@ bool CefDragDataCToCpp::IsFragment()
|
||||
return _retval?true:false;
|
||||
}
|
||||
|
||||
|
||||
bool CefDragDataCToCpp::IsFile()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, is_file))
|
||||
@ -60,7 +58,6 @@ bool CefDragDataCToCpp::IsFile()
|
||||
return _retval?true:false;
|
||||
}
|
||||
|
||||
|
||||
CefString CefDragDataCToCpp::GetLinkURL()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_link_url))
|
||||
@ -77,7 +74,6 @@ CefString CefDragDataCToCpp::GetLinkURL()
|
||||
return _retvalStr;
|
||||
}
|
||||
|
||||
|
||||
CefString CefDragDataCToCpp::GetLinkTitle()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_link_title))
|
||||
@ -94,7 +90,6 @@ CefString CefDragDataCToCpp::GetLinkTitle()
|
||||
return _retvalStr;
|
||||
}
|
||||
|
||||
|
||||
CefString CefDragDataCToCpp::GetLinkMetadata()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_link_metadata))
|
||||
@ -111,7 +106,6 @@ CefString CefDragDataCToCpp::GetLinkMetadata()
|
||||
return _retvalStr;
|
||||
}
|
||||
|
||||
|
||||
CefString CefDragDataCToCpp::GetFragmentText()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_fragment_text))
|
||||
@ -128,7 +122,6 @@ CefString CefDragDataCToCpp::GetFragmentText()
|
||||
return _retvalStr;
|
||||
}
|
||||
|
||||
|
||||
CefString CefDragDataCToCpp::GetFragmentHtml()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_fragment_html))
|
||||
@ -145,7 +138,6 @@ CefString CefDragDataCToCpp::GetFragmentHtml()
|
||||
return _retvalStr;
|
||||
}
|
||||
|
||||
|
||||
CefString CefDragDataCToCpp::GetFragmentBaseURL()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_fragment_base_url))
|
||||
@ -162,7 +154,6 @@ CefString CefDragDataCToCpp::GetFragmentBaseURL()
|
||||
return _retvalStr;
|
||||
}
|
||||
|
||||
|
||||
CefString CefDragDataCToCpp::GetFileExtension()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_file_extension))
|
||||
@ -179,7 +170,6 @@ CefString CefDragDataCToCpp::GetFileExtension()
|
||||
return _retvalStr;
|
||||
}
|
||||
|
||||
|
||||
CefString CefDragDataCToCpp::GetFileName()
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_file_name))
|
||||
@ -196,7 +186,6 @@ CefString CefDragDataCToCpp::GetFileName()
|
||||
return _retvalStr;
|
||||
}
|
||||
|
||||
|
||||
bool CefDragDataCToCpp::GetFileNames(std::vector<CefString>& names)
|
||||
{
|
||||
if (CEF_MEMBER_MISSING(struct_, get_file_names))
|
||||
@ -226,7 +215,6 @@ bool CefDragDataCToCpp::GetFileNames(std::vector<CefString>& names)
|
||||
}
|
||||
|
||||
|
||||
|
||||
#ifndef NDEBUG
|
||||
template<> long CefCToCpp<CefDragDataCToCpp, CefDragData,
|
||||
cef_drag_data_t>::DebugObjCt = 0;
|
||||
|
Reference in New Issue
Block a user