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:
@ -32,7 +32,6 @@ enum cef_dom_document_type_t CEF_CALLBACK domdocument_get_type(
|
||||
return _retval;
|
||||
}
|
||||
|
||||
|
||||
struct _cef_domnode_t* CEF_CALLBACK domdocument_get_document(
|
||||
struct _cef_domdocument_t* self)
|
||||
{
|
||||
@ -50,7 +49,6 @@ struct _cef_domnode_t* CEF_CALLBACK domdocument_get_document(
|
||||
return CefDOMNodeCppToC::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
struct _cef_domnode_t* CEF_CALLBACK domdocument_get_body(
|
||||
struct _cef_domdocument_t* self)
|
||||
{
|
||||
@ -67,7 +65,6 @@ struct _cef_domnode_t* CEF_CALLBACK domdocument_get_body(
|
||||
return CefDOMNodeCppToC::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
struct _cef_domnode_t* CEF_CALLBACK domdocument_get_head(
|
||||
struct _cef_domdocument_t* self)
|
||||
{
|
||||
@ -84,7 +81,6 @@ struct _cef_domnode_t* CEF_CALLBACK domdocument_get_head(
|
||||
return CefDOMNodeCppToC::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK domdocument_get_title(
|
||||
struct _cef_domdocument_t* self)
|
||||
{
|
||||
@ -101,7 +97,6 @@ cef_string_userfree_t CEF_CALLBACK domdocument_get_title(
|
||||
return _retval.DetachToUserFree();
|
||||
}
|
||||
|
||||
|
||||
struct _cef_domnode_t* CEF_CALLBACK domdocument_get_element_by_id(
|
||||
struct _cef_domdocument_t* self, const cef_string_t* id)
|
||||
{
|
||||
@ -124,7 +119,6 @@ struct _cef_domnode_t* CEF_CALLBACK domdocument_get_element_by_id(
|
||||
return CefDOMNodeCppToC::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
struct _cef_domnode_t* CEF_CALLBACK domdocument_get_focused_node(
|
||||
struct _cef_domdocument_t* self)
|
||||
{
|
||||
@ -142,7 +136,6 @@ struct _cef_domnode_t* CEF_CALLBACK domdocument_get_focused_node(
|
||||
return CefDOMNodeCppToC::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
int CEF_CALLBACK domdocument_has_selection(struct _cef_domdocument_t* self)
|
||||
{
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
@ -158,7 +151,6 @@ int CEF_CALLBACK domdocument_has_selection(struct _cef_domdocument_t* self)
|
||||
return _retval;
|
||||
}
|
||||
|
||||
|
||||
struct _cef_domnode_t* CEF_CALLBACK domdocument_get_selection_start_node(
|
||||
struct _cef_domdocument_t* self)
|
||||
{
|
||||
@ -176,7 +168,6 @@ struct _cef_domnode_t* CEF_CALLBACK domdocument_get_selection_start_node(
|
||||
return CefDOMNodeCppToC::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
int CEF_CALLBACK domdocument_get_selection_start_offset(
|
||||
struct _cef_domdocument_t* self)
|
||||
{
|
||||
@ -193,7 +184,6 @@ int CEF_CALLBACK domdocument_get_selection_start_offset(
|
||||
return _retval;
|
||||
}
|
||||
|
||||
|
||||
struct _cef_domnode_t* CEF_CALLBACK domdocument_get_selection_end_node(
|
||||
struct _cef_domdocument_t* self)
|
||||
{
|
||||
@ -211,7 +201,6 @@ struct _cef_domnode_t* CEF_CALLBACK domdocument_get_selection_end_node(
|
||||
return CefDOMNodeCppToC::Wrap(_retval);
|
||||
}
|
||||
|
||||
|
||||
int CEF_CALLBACK domdocument_get_selection_end_offset(
|
||||
struct _cef_domdocument_t* self)
|
||||
{
|
||||
@ -228,7 +217,6 @@ int CEF_CALLBACK domdocument_get_selection_end_offset(
|
||||
return _retval;
|
||||
}
|
||||
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK domdocument_get_selection_as_markup(
|
||||
struct _cef_domdocument_t* self)
|
||||
{
|
||||
@ -245,7 +233,6 @@ cef_string_userfree_t CEF_CALLBACK domdocument_get_selection_as_markup(
|
||||
return _retval.DetachToUserFree();
|
||||
}
|
||||
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK domdocument_get_selection_as_text(
|
||||
struct _cef_domdocument_t* self)
|
||||
{
|
||||
@ -262,7 +249,6 @@ cef_string_userfree_t CEF_CALLBACK domdocument_get_selection_as_text(
|
||||
return _retval.DetachToUserFree();
|
||||
}
|
||||
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK domdocument_get_base_url(
|
||||
struct _cef_domdocument_t* self)
|
||||
{
|
||||
@ -279,7 +265,6 @@ cef_string_userfree_t CEF_CALLBACK domdocument_get_base_url(
|
||||
return _retval.DetachToUserFree();
|
||||
}
|
||||
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK domdocument_get_complete_url(
|
||||
struct _cef_domdocument_t* self, const cef_string_t* partialURL)
|
||||
{
|
||||
@ -302,7 +287,6 @@ cef_string_userfree_t CEF_CALLBACK domdocument_get_complete_url(
|
||||
}
|
||||
|
||||
|
||||
|
||||
// CONSTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefDOMDocumentCppToC::CefDOMDocumentCppToC(CefDOMDocument* cls)
|
||||
|
Reference in New Issue
Block a user