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 @@ int CEF_CALLBACK response_get_status(struct _cef_response_t* self)
|
||||
return _retval;
|
||||
}
|
||||
|
||||
|
||||
void CEF_CALLBACK response_set_status(struct _cef_response_t* self, int status)
|
||||
{
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
@ -45,7 +44,6 @@ void CEF_CALLBACK response_set_status(struct _cef_response_t* self, int status)
|
||||
status);
|
||||
}
|
||||
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK response_get_status_text(
|
||||
struct _cef_response_t* self)
|
||||
{
|
||||
@ -62,7 +60,6 @@ cef_string_userfree_t CEF_CALLBACK response_get_status_text(
|
||||
return _retval.DetachToUserFree();
|
||||
}
|
||||
|
||||
|
||||
void CEF_CALLBACK response_set_status_text(struct _cef_response_t* self,
|
||||
const cef_string_t* statusText)
|
||||
{
|
||||
@ -81,7 +78,6 @@ void CEF_CALLBACK response_set_status_text(struct _cef_response_t* self,
|
||||
CefString(statusText));
|
||||
}
|
||||
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK response_get_mime_type(
|
||||
struct _cef_response_t* self)
|
||||
{
|
||||
@ -98,7 +94,6 @@ cef_string_userfree_t CEF_CALLBACK response_get_mime_type(
|
||||
return _retval.DetachToUserFree();
|
||||
}
|
||||
|
||||
|
||||
void CEF_CALLBACK response_set_mime_type(struct _cef_response_t* self,
|
||||
const cef_string_t* mimeType)
|
||||
{
|
||||
@ -117,7 +112,6 @@ void CEF_CALLBACK response_set_mime_type(struct _cef_response_t* self,
|
||||
CefString(mimeType));
|
||||
}
|
||||
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK response_get_header(
|
||||
struct _cef_response_t* self, const cef_string_t* name)
|
||||
{
|
||||
@ -139,7 +133,6 @@ cef_string_userfree_t CEF_CALLBACK response_get_header(
|
||||
return _retval.DetachToUserFree();
|
||||
}
|
||||
|
||||
|
||||
void CEF_CALLBACK response_get_header_map(struct _cef_response_t* self,
|
||||
cef_string_multimap_t headerMap)
|
||||
{
|
||||
@ -166,7 +159,6 @@ void CEF_CALLBACK response_get_header_map(struct _cef_response_t* self,
|
||||
transfer_string_multimap_contents(headerMapMultimap, headerMap);
|
||||
}
|
||||
|
||||
|
||||
void CEF_CALLBACK response_set_header_map(struct _cef_response_t* self,
|
||||
cef_string_multimap_t headerMap)
|
||||
{
|
||||
@ -190,7 +182,6 @@ void CEF_CALLBACK response_set_header_map(struct _cef_response_t* self,
|
||||
}
|
||||
|
||||
|
||||
|
||||
// CONSTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefResponseCppToC::CefResponseCppToC(CefResponse* cls)
|
||||
|
Reference in New Issue
Block a user