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

@ -38,7 +38,6 @@ void CEF_CALLBACK web_urlrequest_client_on_state_change(
state);
}
void CEF_CALLBACK web_urlrequest_client_on_redirect(
struct _cef_web_urlrequest_client_t* self, cef_web_urlrequest_t* requester,
cef_request_t* request, cef_response_t* response)
@ -68,7 +67,6 @@ void CEF_CALLBACK web_urlrequest_client_on_redirect(
CefResponseCToCpp::Wrap(response));
}
void CEF_CALLBACK web_urlrequest_client_on_headers_received(
struct _cef_web_urlrequest_client_t* self, cef_web_urlrequest_t* requester,
cef_response_t* response)
@ -93,7 +91,6 @@ void CEF_CALLBACK web_urlrequest_client_on_headers_received(
CefResponseCToCpp::Wrap(response));
}
void CEF_CALLBACK web_urlrequest_client_on_progress(
struct _cef_web_urlrequest_client_t* self, cef_web_urlrequest_t* requester,
uint64 bytesSent, uint64 totalBytesToBeSent)
@ -115,7 +112,6 @@ void CEF_CALLBACK web_urlrequest_client_on_progress(
totalBytesToBeSent);
}
void CEF_CALLBACK web_urlrequest_client_on_data(
struct _cef_web_urlrequest_client_t* self, cef_web_urlrequest_t* requester,
const void* data, int dataLength)
@ -141,7 +137,6 @@ void CEF_CALLBACK web_urlrequest_client_on_data(
dataLength);
}
void CEF_CALLBACK web_urlrequest_client_on_error(
struct _cef_web_urlrequest_client_t* self, cef_web_urlrequest_t* requester,
enum cef_handler_errorcode_t errorCode)
@ -163,7 +158,6 @@ void CEF_CALLBACK web_urlrequest_client_on_error(
}
// CONSTRUCTOR - Do not edit by hand.
CefWebURLRequestClientCppToC::CefWebURLRequestClientCppToC(