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

@@ -27,7 +27,6 @@ CefRefPtr<CefPostDataElement> CefPostDataElement::CreatePostDataElement()
}
// VIRTUAL METHODS - Body may be edited by hand.
void CefPostDataElementCToCpp::SetToEmpty()
@@ -41,7 +40,6 @@ void CefPostDataElementCToCpp::SetToEmpty()
struct_->set_to_empty(struct_);
}
void CefPostDataElementCToCpp::SetToFile(const CefString& fileName)
{
if (CEF_MEMBER_MISSING(struct_, set_to_file))
@@ -59,7 +57,6 @@ void CefPostDataElementCToCpp::SetToFile(const CefString& fileName)
fileName.GetStruct());
}
void CefPostDataElementCToCpp::SetToBytes(size_t size, const void* bytes)
{
if (CEF_MEMBER_MISSING(struct_, set_to_bytes))
@@ -78,7 +75,6 @@ void CefPostDataElementCToCpp::SetToBytes(size_t size, const void* bytes)
bytes);
}
CefPostDataElement::Type CefPostDataElementCToCpp::GetType()
{
if (CEF_MEMBER_MISSING(struct_, get_type))
@@ -93,7 +89,6 @@ CefPostDataElement::Type CefPostDataElementCToCpp::GetType()
return _retval;
}
CefString CefPostDataElementCToCpp::GetFile()
{
if (CEF_MEMBER_MISSING(struct_, get_file))
@@ -110,7 +105,6 @@ CefString CefPostDataElementCToCpp::GetFile()
return _retvalStr;
}
size_t CefPostDataElementCToCpp::GetBytesCount()
{
if (CEF_MEMBER_MISSING(struct_, get_bytes_count))
@@ -125,7 +119,6 @@ size_t CefPostDataElementCToCpp::GetBytesCount()
return _retval;
}
size_t CefPostDataElementCToCpp::GetBytes(size_t size, void* bytes)
{
if (CEF_MEMBER_MISSING(struct_, get_bytes))
@@ -148,7 +141,6 @@ size_t CefPostDataElementCToCpp::GetBytes(size_t size, void* bytes)
}
#ifndef NDEBUG
template<> long CefCToCpp<CefPostDataElementCToCpp, CefPostDataElement,
cef_post_data_element_t>::DebugObjCt = 0;