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

@@ -28,7 +28,6 @@ CefRefPtr<CefPostData> CefPostData::CreatePostData()
}
// VIRTUAL METHODS - Body may be edited by hand.
size_t CefPostDataCToCpp::GetElementCount()
@@ -45,7 +44,6 @@ size_t CefPostDataCToCpp::GetElementCount()
return _retval;
}
void CefPostDataCToCpp::GetElements(ElementVector& elements)
{
if (CEF_MEMBER_MISSING(struct_, get_elements))
@@ -85,7 +83,6 @@ void CefPostDataCToCpp::GetElements(ElementVector& elements)
}
}
bool CefPostDataCToCpp::RemoveElement(CefRefPtr<CefPostDataElement> element)
{
if (CEF_MEMBER_MISSING(struct_, remove_element))
@@ -106,7 +103,6 @@ bool CefPostDataCToCpp::RemoveElement(CefRefPtr<CefPostDataElement> element)
return _retval?true:false;
}
bool CefPostDataCToCpp::AddElement(CefRefPtr<CefPostDataElement> element)
{
if (CEF_MEMBER_MISSING(struct_, add_element))
@@ -127,7 +123,6 @@ bool CefPostDataCToCpp::AddElement(CefRefPtr<CefPostDataElement> element)
return _retval?true:false;
}
void CefPostDataCToCpp::RemoveElements()
{
if (CEF_MEMBER_MISSING(struct_, remove_elements))
@@ -140,7 +135,6 @@ void CefPostDataCToCpp::RemoveElements()
}
#ifndef NDEBUG
template<> long CefCToCpp<CefPostDataCToCpp, CefPostData,
cef_post_data_t>::DebugObjCt = 0;