mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Implement new approach for debugging leaked wrapper object references (issue #2593)
This commit is contained in:
@@ -9,12 +9,13 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=89ac811652a9a884a71d2c9f3b828665bb041995$
|
||||
// $hash=6f1d2cc2dc85d65bca5e6e0ad3fa5465ffe25abe$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/box_layout_cpptoc.h"
|
||||
#include "libcef_dll/cpptoc/views/fill_layout_cpptoc.h"
|
||||
#include "libcef_dll/cpptoc/views/view_cpptoc.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
namespace {
|
||||
|
||||
@@ -23,6 +24,8 @@ namespace {
|
||||
void CEF_CALLBACK box_layout_set_flex_for_view(struct _cef_box_layout_t* self,
|
||||
struct _cef_view_t* view,
|
||||
int flex) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -40,6 +43,8 @@ void CEF_CALLBACK box_layout_set_flex_for_view(struct _cef_box_layout_t* self,
|
||||
|
||||
void CEF_CALLBACK box_layout_clear_flex_for_view(struct _cef_box_layout_t* self,
|
||||
struct _cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -56,6 +61,8 @@ void CEF_CALLBACK box_layout_clear_flex_for_view(struct _cef_box_layout_t* self,
|
||||
|
||||
cef_box_layout_t* CEF_CALLBACK
|
||||
box_layout_as_box_layout(struct _cef_layout_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -73,6 +80,8 @@ box_layout_as_box_layout(struct _cef_layout_t* self) {
|
||||
|
||||
cef_fill_layout_t* CEF_CALLBACK
|
||||
box_layout_as_fill_layout(struct _cef_layout_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -89,6 +98,8 @@ box_layout_as_fill_layout(struct _cef_layout_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK box_layout_is_valid(struct _cef_layout_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -116,6 +127,12 @@ CefBoxLayoutCppToC::CefBoxLayoutCppToC() {
|
||||
GetStruct()->base.is_valid = box_layout_is_valid;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefBoxLayoutCppToC::~CefBoxLayoutCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefBoxLayout>
|
||||
CefCppToCRefCounted<CefBoxLayoutCppToC, CefBoxLayout, cef_box_layout_t>::
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=1453f8f11297ecd28a0b79e9decabf10365cbf47$
|
||||
// $hash=6cc2c59d3553e8bf3dd259343d0582299507e917$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_BOX_LAYOUT_CPPTOC_H_
|
||||
@@ -33,6 +33,7 @@ class CefBoxLayoutCppToC : public CefCppToCRefCounted<CefBoxLayoutCppToC,
|
||||
cef_box_layout_t> {
|
||||
public:
|
||||
CefBoxLayoutCppToC();
|
||||
virtual ~CefBoxLayoutCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_BOX_LAYOUT_CPPTOC_H_
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=cf08bdb29918ece011ddb5467a553abc536ce3a4$
|
||||
// $hash=53d9dc3592036a917e9116288f6d4feb72efcfd9$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/browser_view_cpptoc.h"
|
||||
@@ -24,6 +24,7 @@
|
||||
#include "libcef_dll/ctocpp/client_ctocpp.h"
|
||||
#include "libcef_dll/ctocpp/views/browser_view_delegate_ctocpp.h"
|
||||
#include "libcef_dll/ctocpp/views/view_delegate_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
// GLOBAL FUNCTIONS - Body may be edited by hand.
|
||||
|
||||
@@ -33,6 +34,8 @@ CEF_EXPORT cef_browser_view_t* cef_browser_view_create(
|
||||
const struct _cef_browser_settings_t* settings,
|
||||
cef_request_context_t* request_context,
|
||||
cef_browser_view_delegate_t* delegate) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: settings; type: struct_byref_const
|
||||
@@ -58,6 +61,8 @@ CEF_EXPORT cef_browser_view_t* cef_browser_view_create(
|
||||
|
||||
CEF_EXPORT cef_browser_view_t* cef_browser_view_get_for_browser(
|
||||
cef_browser_t* browser) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: browser; type: refptr_same
|
||||
@@ -79,6 +84,8 @@ namespace {
|
||||
|
||||
cef_browser_t* CEF_CALLBACK
|
||||
browser_view_get_browser(struct _cef_browser_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -95,6 +102,8 @@ browser_view_get_browser(struct _cef_browser_view_t* self) {
|
||||
void CEF_CALLBACK
|
||||
browser_view_set_prefer_accelerators(struct _cef_browser_view_t* self,
|
||||
int prefer_accelerators) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -108,6 +117,8 @@ browser_view_set_prefer_accelerators(struct _cef_browser_view_t* self,
|
||||
|
||||
cef_browser_view_t* CEF_CALLBACK
|
||||
browser_view_as_browser_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -124,6 +135,8 @@ browser_view_as_browser_view(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_button_t* CEF_CALLBACK browser_view_as_button(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -140,6 +153,8 @@ cef_button_t* CEF_CALLBACK browser_view_as_button(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_panel_t* CEF_CALLBACK browser_view_as_panel(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -157,6 +172,8 @@ cef_panel_t* CEF_CALLBACK browser_view_as_panel(struct _cef_view_t* self) {
|
||||
|
||||
cef_scroll_view_t* CEF_CALLBACK
|
||||
browser_view_as_scroll_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -174,6 +191,8 @@ browser_view_as_scroll_view(struct _cef_view_t* self) {
|
||||
|
||||
cef_textfield_t* CEF_CALLBACK
|
||||
browser_view_as_textfield(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -191,6 +210,8 @@ browser_view_as_textfield(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
browser_view_get_type_string(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -208,6 +229,8 @@ browser_view_get_type_string(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
browser_view_to_string(struct _cef_view_t* self, int include_children) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -224,6 +247,8 @@ browser_view_to_string(struct _cef_view_t* self, int include_children) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK browser_view_is_valid(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -240,6 +265,8 @@ int CEF_CALLBACK browser_view_is_valid(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK browser_view_is_attached(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -257,6 +284,8 @@ int CEF_CALLBACK browser_view_is_attached(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK browser_view_is_same(struct _cef_view_t* self,
|
||||
struct _cef_view_t* that) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -278,6 +307,8 @@ int CEF_CALLBACK browser_view_is_same(struct _cef_view_t* self,
|
||||
|
||||
struct _cef_view_delegate_t* CEF_CALLBACK
|
||||
browser_view_get_delegate(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -295,6 +326,8 @@ browser_view_get_delegate(struct _cef_view_t* self) {
|
||||
|
||||
struct _cef_window_t* CEF_CALLBACK
|
||||
browser_view_get_window(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -311,6 +344,8 @@ browser_view_get_window(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK browser_view_get_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -327,6 +362,8 @@ int CEF_CALLBACK browser_view_get_id(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK browser_view_set_id(struct _cef_view_t* self, int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -339,6 +376,8 @@ void CEF_CALLBACK browser_view_set_id(struct _cef_view_t* self, int id) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK browser_view_get_group_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -356,6 +395,8 @@ int CEF_CALLBACK browser_view_get_group_id(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK browser_view_set_group_id(struct _cef_view_t* self,
|
||||
int group_id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -369,6 +410,8 @@ void CEF_CALLBACK browser_view_set_group_id(struct _cef_view_t* self,
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
browser_view_get_parent_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -386,6 +429,8 @@ browser_view_get_parent_view(struct _cef_view_t* self) {
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
browser_view_get_view_for_id(struct _cef_view_t* self, int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -403,6 +448,8 @@ browser_view_get_view_for_id(struct _cef_view_t* self, int id) {
|
||||
|
||||
void CEF_CALLBACK browser_view_set_bounds(struct _cef_view_t* self,
|
||||
const cef_rect_t* bounds) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -422,6 +469,8 @@ void CEF_CALLBACK browser_view_set_bounds(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_rect_t CEF_CALLBACK browser_view_get_bounds(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -439,6 +488,8 @@ cef_rect_t CEF_CALLBACK browser_view_get_bounds(struct _cef_view_t* self) {
|
||||
|
||||
cef_rect_t CEF_CALLBACK
|
||||
browser_view_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -456,6 +507,8 @@ browser_view_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK browser_view_set_size(struct _cef_view_t* self,
|
||||
const cef_size_t* size) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -475,6 +528,8 @@ void CEF_CALLBACK browser_view_set_size(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK browser_view_get_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -492,6 +547,8 @@ cef_size_t CEF_CALLBACK browser_view_get_size(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK browser_view_set_position(struct _cef_view_t* self,
|
||||
const cef_point_t* position) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -511,6 +568,8 @@ void CEF_CALLBACK browser_view_set_position(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_point_t CEF_CALLBACK browser_view_get_position(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -528,6 +587,8 @@ cef_point_t CEF_CALLBACK browser_view_get_position(struct _cef_view_t* self) {
|
||||
|
||||
cef_size_t CEF_CALLBACK
|
||||
browser_view_get_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -545,6 +606,8 @@ browser_view_get_preferred_size(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK
|
||||
browser_view_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -558,6 +621,8 @@ browser_view_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
|
||||
cef_size_t CEF_CALLBACK
|
||||
browser_view_get_minimum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -575,6 +640,8 @@ browser_view_get_minimum_size(struct _cef_view_t* self) {
|
||||
|
||||
cef_size_t CEF_CALLBACK
|
||||
browser_view_get_maximum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -592,6 +659,8 @@ browser_view_get_maximum_size(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK browser_view_get_height_for_width(struct _cef_view_t* self,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -608,6 +677,8 @@ int CEF_CALLBACK browser_view_get_height_for_width(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK browser_view_invalidate_layout(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -621,6 +692,8 @@ void CEF_CALLBACK browser_view_invalidate_layout(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK browser_view_set_visible(struct _cef_view_t* self,
|
||||
int visible) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -633,6 +706,8 @@ void CEF_CALLBACK browser_view_set_visible(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK browser_view_is_visible(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -649,6 +724,8 @@ int CEF_CALLBACK browser_view_is_visible(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK browser_view_is_drawn(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -666,6 +743,8 @@ int CEF_CALLBACK browser_view_is_drawn(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK browser_view_set_enabled(struct _cef_view_t* self,
|
||||
int enabled) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -678,6 +757,8 @@ void CEF_CALLBACK browser_view_set_enabled(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK browser_view_is_enabled(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -695,6 +776,8 @@ int CEF_CALLBACK browser_view_is_enabled(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK browser_view_set_focusable(struct _cef_view_t* self,
|
||||
int focusable) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -707,6 +790,8 @@ void CEF_CALLBACK browser_view_set_focusable(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK browser_view_is_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -724,6 +809,8 @@ int CEF_CALLBACK browser_view_is_focusable(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK
|
||||
browser_view_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -740,6 +827,8 @@ browser_view_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK browser_view_request_focus(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -753,6 +842,8 @@ void CEF_CALLBACK browser_view_request_focus(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK browser_view_set_background_color(struct _cef_view_t* self,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -766,6 +857,8 @@ void CEF_CALLBACK browser_view_set_background_color(struct _cef_view_t* self,
|
||||
|
||||
cef_color_t CEF_CALLBACK
|
||||
browser_view_get_background_color(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -783,6 +876,8 @@ browser_view_get_background_color(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK browser_view_convert_point_to_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -812,6 +907,8 @@ int CEF_CALLBACK browser_view_convert_point_to_screen(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK
|
||||
browser_view_convert_point_from_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -840,6 +937,8 @@ browser_view_convert_point_from_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK browser_view_convert_point_to_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -869,6 +968,8 @@ int CEF_CALLBACK browser_view_convert_point_to_window(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK
|
||||
browser_view_convert_point_from_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -898,6 +999,8 @@ browser_view_convert_point_from_window(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK browser_view_convert_point_to_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -931,6 +1034,8 @@ int CEF_CALLBACK browser_view_convert_point_to_view(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK browser_view_convert_point_from_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1025,6 +1130,12 @@ CefBrowserViewCppToC::CefBrowserViewCppToC() {
|
||||
browser_view_convert_point_from_view;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefBrowserViewCppToC::~CefBrowserViewCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefBrowserView>
|
||||
CefCppToCRefCounted<CefBrowserViewCppToC, CefBrowserView, cef_browser_view_t>::
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=cc6519f0303e67f9c5bb230909a0e3dec896950b$
|
||||
// $hash=16ff454a480c329617fea13843f8ed1c7cc21a1e$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_BROWSER_VIEW_CPPTOC_H_
|
||||
@@ -31,6 +31,7 @@ class CefBrowserViewCppToC : public CefCppToCRefCounted<CefBrowserViewCppToC,
|
||||
cef_browser_view_t> {
|
||||
public:
|
||||
CefBrowserViewCppToC();
|
||||
virtual ~CefBrowserViewCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_BROWSER_VIEW_CPPTOC_H_
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=a9c095d4f899068160799d6caa4660c2d440ea2c$
|
||||
// $hash=b1d5a443abaf42f8b6c36a31f119c7430df43bca$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/browser_view_delegate_cpptoc.h"
|
||||
@@ -17,6 +17,7 @@
|
||||
#include "libcef_dll/ctocpp/browser_ctocpp.h"
|
||||
#include "libcef_dll/ctocpp/views/browser_view_ctocpp.h"
|
||||
#include "libcef_dll/ctocpp/views/view_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
namespace {
|
||||
|
||||
@@ -26,6 +27,8 @@ void CEF_CALLBACK browser_view_delegate_on_browser_created(
|
||||
struct _cef_browser_view_delegate_t* self,
|
||||
cef_browser_view_t* browser_view,
|
||||
cef_browser_t* browser) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -50,6 +53,8 @@ void CEF_CALLBACK browser_view_delegate_on_browser_destroyed(
|
||||
struct _cef_browser_view_delegate_t* self,
|
||||
cef_browser_view_t* browser_view,
|
||||
cef_browser_t* browser) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -77,6 +82,8 @@ browser_view_delegate_get_delegate_for_popup_browser_view(
|
||||
const struct _cef_browser_settings_t* settings,
|
||||
cef_client_t* client,
|
||||
int is_devtools) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -115,6 +122,8 @@ int CEF_CALLBACK browser_view_delegate_on_popup_browser_view_created(
|
||||
cef_browser_view_t* browser_view,
|
||||
cef_browser_view_t* popup_browser_view,
|
||||
int is_devtools) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -143,6 +152,8 @@ int CEF_CALLBACK browser_view_delegate_on_popup_browser_view_created(
|
||||
cef_size_t CEF_CALLBACK
|
||||
browser_view_delegate_get_preferred_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -165,6 +176,8 @@ browser_view_delegate_get_preferred_size(struct _cef_view_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
browser_view_delegate_get_minimum_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -187,6 +200,8 @@ browser_view_delegate_get_minimum_size(struct _cef_view_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
browser_view_delegate_get_maximum_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -210,6 +225,8 @@ int CEF_CALLBACK
|
||||
browser_view_delegate_get_height_for_width(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -234,6 +251,8 @@ browser_view_delegate_on_parent_view_changed(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int added,
|
||||
cef_view_t* parent) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -260,6 +279,8 @@ browser_view_delegate_on_child_view_changed(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int added,
|
||||
cef_view_t* child) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -284,6 +305,8 @@ browser_view_delegate_on_child_view_changed(struct _cef_view_delegate_t* self,
|
||||
void CEF_CALLBACK
|
||||
browser_view_delegate_on_focus(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -303,6 +326,8 @@ browser_view_delegate_on_focus(struct _cef_view_delegate_t* self,
|
||||
void CEF_CALLBACK
|
||||
browser_view_delegate_on_blur(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -345,6 +370,12 @@ CefBrowserViewDelegateCppToC::CefBrowserViewDelegateCppToC() {
|
||||
GetStruct()->base.on_blur = browser_view_delegate_on_blur;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefBrowserViewDelegateCppToC::~CefBrowserViewDelegateCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefBrowserViewDelegate> CefCppToCRefCounted<
|
||||
CefBrowserViewDelegateCppToC,
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=76e7ebaa4de60da787cbda41be1b00dd080cd621$
|
||||
// $hash=81e89b48c869a73e0a132889f43088bb589bfc5a$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_BROWSER_VIEW_DELEGATE_CPPTOC_H_
|
||||
@@ -36,6 +36,7 @@ class CefBrowserViewDelegateCppToC
|
||||
cef_browser_view_delegate_t> {
|
||||
public:
|
||||
CefBrowserViewDelegateCppToC();
|
||||
virtual ~CefBrowserViewDelegateCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_BROWSER_VIEW_DELEGATE_CPPTOC_H_
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=923f9d903634b18aff96ca61d9d4bc402e3be551$
|
||||
// $hash=21ebfcd36a54d1b3004b6e4e1b2ab3760f23110a$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/button_cpptoc.h"
|
||||
@@ -22,6 +22,7 @@
|
||||
#include "libcef_dll/cpptoc/views/view_cpptoc.h"
|
||||
#include "libcef_dll/cpptoc/views/window_cpptoc.h"
|
||||
#include "libcef_dll/ctocpp/views/view_delegate_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
namespace {
|
||||
|
||||
@@ -29,6 +30,8 @@ namespace {
|
||||
|
||||
cef_label_button_t* CEF_CALLBACK
|
||||
button_as_label_button(struct _cef_button_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -45,6 +48,8 @@ button_as_label_button(struct _cef_button_t* self) {
|
||||
|
||||
void CEF_CALLBACK button_set_state(struct _cef_button_t* self,
|
||||
cef_button_state_t state) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -56,6 +61,8 @@ void CEF_CALLBACK button_set_state(struct _cef_button_t* self,
|
||||
}
|
||||
|
||||
cef_button_state_t CEF_CALLBACK button_get_state(struct _cef_button_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -71,6 +78,8 @@ cef_button_state_t CEF_CALLBACK button_get_state(struct _cef_button_t* self) {
|
||||
|
||||
void CEF_CALLBACK button_set_ink_drop_enabled(struct _cef_button_t* self,
|
||||
int enabled) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -83,6 +92,8 @@ void CEF_CALLBACK button_set_ink_drop_enabled(struct _cef_button_t* self,
|
||||
|
||||
void CEF_CALLBACK button_set_tooltip_text(struct _cef_button_t* self,
|
||||
const cef_string_t* tooltip_text) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -99,6 +110,8 @@ void CEF_CALLBACK button_set_tooltip_text(struct _cef_button_t* self,
|
||||
|
||||
void CEF_CALLBACK button_set_accessible_name(struct _cef_button_t* self,
|
||||
const cef_string_t* name) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -115,6 +128,8 @@ void CEF_CALLBACK button_set_accessible_name(struct _cef_button_t* self,
|
||||
|
||||
cef_browser_view_t* CEF_CALLBACK
|
||||
button_as_browser_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -131,6 +146,8 @@ button_as_browser_view(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_button_t* CEF_CALLBACK button_as_button(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -146,6 +163,8 @@ cef_button_t* CEF_CALLBACK button_as_button(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_panel_t* CEF_CALLBACK button_as_panel(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -162,6 +181,8 @@ cef_panel_t* CEF_CALLBACK button_as_panel(struct _cef_view_t* self) {
|
||||
|
||||
cef_scroll_view_t* CEF_CALLBACK
|
||||
button_as_scroll_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -178,6 +199,8 @@ button_as_scroll_view(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_textfield_t* CEF_CALLBACK button_as_textfield(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -195,6 +218,8 @@ cef_textfield_t* CEF_CALLBACK button_as_textfield(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
button_get_type_string(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -212,6 +237,8 @@ button_get_type_string(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK button_to_string(struct _cef_view_t* self,
|
||||
int include_children) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -228,6 +255,8 @@ cef_string_userfree_t CEF_CALLBACK button_to_string(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK button_is_valid(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -243,6 +272,8 @@ int CEF_CALLBACK button_is_valid(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK button_is_attached(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -259,6 +290,8 @@ int CEF_CALLBACK button_is_attached(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK button_is_same(struct _cef_view_t* self,
|
||||
struct _cef_view_t* that) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -279,6 +312,8 @@ int CEF_CALLBACK button_is_same(struct _cef_view_t* self,
|
||||
|
||||
struct _cef_view_delegate_t* CEF_CALLBACK
|
||||
button_get_delegate(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -295,6 +330,8 @@ button_get_delegate(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
struct _cef_window_t* CEF_CALLBACK button_get_window(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -310,6 +347,8 @@ struct _cef_window_t* CEF_CALLBACK button_get_window(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK button_get_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -325,6 +364,8 @@ int CEF_CALLBACK button_get_id(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK button_set_id(struct _cef_view_t* self, int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -336,6 +377,8 @@ void CEF_CALLBACK button_set_id(struct _cef_view_t* self, int id) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK button_get_group_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -351,6 +394,8 @@ int CEF_CALLBACK button_get_group_id(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK button_set_group_id(struct _cef_view_t* self, int group_id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -364,6 +409,8 @@ void CEF_CALLBACK button_set_group_id(struct _cef_view_t* self, int group_id) {
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
button_get_parent_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -381,6 +428,8 @@ button_get_parent_view(struct _cef_view_t* self) {
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
button_get_view_for_id(struct _cef_view_t* self, int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -398,6 +447,8 @@ button_get_view_for_id(struct _cef_view_t* self, int id) {
|
||||
|
||||
void CEF_CALLBACK button_set_bounds(struct _cef_view_t* self,
|
||||
const cef_rect_t* bounds) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -417,6 +468,8 @@ void CEF_CALLBACK button_set_bounds(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_rect_t CEF_CALLBACK button_get_bounds(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -432,6 +485,8 @@ cef_rect_t CEF_CALLBACK button_get_bounds(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_rect_t CEF_CALLBACK button_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -449,6 +504,8 @@ cef_rect_t CEF_CALLBACK button_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK button_set_size(struct _cef_view_t* self,
|
||||
const cef_size_t* size) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -467,6 +524,8 @@ void CEF_CALLBACK button_set_size(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK button_get_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -483,6 +542,8 @@ cef_size_t CEF_CALLBACK button_get_size(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK button_set_position(struct _cef_view_t* self,
|
||||
const cef_point_t* position) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -502,6 +563,8 @@ void CEF_CALLBACK button_set_position(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_point_t CEF_CALLBACK button_get_position(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -518,6 +581,8 @@ cef_point_t CEF_CALLBACK button_get_position(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK button_get_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -534,6 +599,8 @@ cef_size_t CEF_CALLBACK button_get_preferred_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK button_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -546,6 +613,8 @@ void CEF_CALLBACK button_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK button_get_minimum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -562,6 +631,8 @@ cef_size_t CEF_CALLBACK button_get_minimum_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK button_get_maximum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -579,6 +650,8 @@ cef_size_t CEF_CALLBACK button_get_maximum_size(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK button_get_height_for_width(struct _cef_view_t* self,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -594,6 +667,8 @@ int CEF_CALLBACK button_get_height_for_width(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK button_invalidate_layout(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -606,6 +681,8 @@ void CEF_CALLBACK button_invalidate_layout(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK button_set_visible(struct _cef_view_t* self, int visible) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -618,6 +695,8 @@ void CEF_CALLBACK button_set_visible(struct _cef_view_t* self, int visible) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK button_is_visible(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -633,6 +712,8 @@ int CEF_CALLBACK button_is_visible(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK button_is_drawn(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -648,6 +729,8 @@ int CEF_CALLBACK button_is_drawn(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK button_set_enabled(struct _cef_view_t* self, int enabled) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -660,6 +743,8 @@ void CEF_CALLBACK button_set_enabled(struct _cef_view_t* self, int enabled) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK button_is_enabled(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -676,6 +761,8 @@ int CEF_CALLBACK button_is_enabled(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK button_set_focusable(struct _cef_view_t* self,
|
||||
int focusable) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -688,6 +775,8 @@ void CEF_CALLBACK button_set_focusable(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK button_is_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -703,6 +792,8 @@ int CEF_CALLBACK button_is_focusable(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK button_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -718,6 +809,8 @@ int CEF_CALLBACK button_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK button_request_focus(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -730,6 +823,8 @@ void CEF_CALLBACK button_request_focus(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK button_set_background_color(struct _cef_view_t* self,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -742,6 +837,8 @@ void CEF_CALLBACK button_set_background_color(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_color_t CEF_CALLBACK button_get_background_color(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -759,6 +856,8 @@ cef_color_t CEF_CALLBACK button_get_background_color(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK button_convert_point_to_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -786,6 +885,8 @@ int CEF_CALLBACK button_convert_point_to_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK button_convert_point_from_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -813,6 +914,8 @@ int CEF_CALLBACK button_convert_point_from_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK button_convert_point_to_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -840,6 +943,8 @@ int CEF_CALLBACK button_convert_point_to_window(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK button_convert_point_from_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -868,6 +973,8 @@ int CEF_CALLBACK button_convert_point_from_window(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK button_convert_point_to_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -901,6 +1008,8 @@ int CEF_CALLBACK button_convert_point_to_view(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK button_convert_point_from_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -995,6 +1104,12 @@ CefButtonCppToC::CefButtonCppToC() {
|
||||
GetStruct()->base.convert_point_from_view = button_convert_point_from_view;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefButtonCppToC::~CefButtonCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefButton>
|
||||
CefCppToCRefCounted<CefButtonCppToC, CefButton, cef_button_t>::UnwrapDerived(
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=a9d8acda7bd6f14d38e804927c0fb5448b82b1bd$
|
||||
// $hash=7ed195825a3d893f05a848e9d87ff86637908f90$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_BUTTON_CPPTOC_H_
|
||||
@@ -32,6 +32,7 @@ class CefButtonCppToC
|
||||
: public CefCppToCRefCounted<CefButtonCppToC, CefButton, cef_button_t> {
|
||||
public:
|
||||
CefButtonCppToC();
|
||||
virtual ~CefButtonCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_BUTTON_CPPTOC_H_
|
||||
|
@@ -9,13 +9,14 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=4759c2358de324fbdbfa4ae052a0ec50503607f7$
|
||||
// $hash=dde104d729355720a66995dbf947c1c58e27d707$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/button_delegate_cpptoc.h"
|
||||
#include "libcef_dll/cpptoc/views/menu_button_delegate_cpptoc.h"
|
||||
#include "libcef_dll/ctocpp/views/button_ctocpp.h"
|
||||
#include "libcef_dll/ctocpp/views/view_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
namespace {
|
||||
|
||||
@@ -24,6 +25,8 @@ namespace {
|
||||
void CEF_CALLBACK
|
||||
button_delegate_on_button_pressed(struct _cef_button_delegate_t* self,
|
||||
cef_button_t* button) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -42,6 +45,8 @@ button_delegate_on_button_pressed(struct _cef_button_delegate_t* self,
|
||||
void CEF_CALLBACK
|
||||
button_delegate_on_button_state_changed(struct _cef_button_delegate_t* self,
|
||||
cef_button_t* button) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -60,6 +65,8 @@ button_delegate_on_button_state_changed(struct _cef_button_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
button_delegate_get_preferred_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -82,6 +89,8 @@ button_delegate_get_preferred_size(struct _cef_view_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
button_delegate_get_minimum_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -104,6 +113,8 @@ button_delegate_get_minimum_size(struct _cef_view_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
button_delegate_get_maximum_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -127,6 +138,8 @@ int CEF_CALLBACK
|
||||
button_delegate_get_height_for_width(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -151,6 +164,8 @@ button_delegate_on_parent_view_changed(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int added,
|
||||
cef_view_t* parent) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -176,6 +191,8 @@ button_delegate_on_child_view_changed(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int added,
|
||||
cef_view_t* child) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -198,6 +215,8 @@ button_delegate_on_child_view_changed(struct _cef_view_delegate_t* self,
|
||||
|
||||
void CEF_CALLBACK button_delegate_on_focus(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -215,6 +234,8 @@ void CEF_CALLBACK button_delegate_on_focus(struct _cef_view_delegate_t* self,
|
||||
|
||||
void CEF_CALLBACK button_delegate_on_blur(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -250,6 +271,12 @@ CefButtonDelegateCppToC::CefButtonDelegateCppToC() {
|
||||
GetStruct()->base.on_blur = button_delegate_on_blur;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefButtonDelegateCppToC::~CefButtonDelegateCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefButtonDelegate> CefCppToCRefCounted<
|
||||
CefButtonDelegateCppToC,
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=63abf099c1e7701f9dd1ea1820e6bb2659b846d9$
|
||||
// $hash=1c747d0d3f7d54f9a949f18db668c9c6fc887e39$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_BUTTON_DELEGATE_CPPTOC_H_
|
||||
@@ -34,6 +34,7 @@ class CefButtonDelegateCppToC
|
||||
cef_button_delegate_t> {
|
||||
public:
|
||||
CefButtonDelegateCppToC();
|
||||
virtual ~CefButtonDelegateCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_BUTTON_DELEGATE_CPPTOC_H_
|
||||
|
@@ -9,15 +9,18 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=dc68eef1f2c7908383ba3d253f98c1a7652425a1$
|
||||
// $hash=ba440d81993b7d2bff96385bc633c246fb47c8fe$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/display_cpptoc.h"
|
||||
#include <algorithm>
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
// GLOBAL FUNCTIONS - Body may be edited by hand.
|
||||
|
||||
CEF_EXPORT cef_display_t* cef_display_get_primary() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Execute
|
||||
@@ -30,6 +33,8 @@ CEF_EXPORT cef_display_t* cef_display_get_primary() {
|
||||
CEF_EXPORT cef_display_t* cef_display_get_nearest_point(
|
||||
const cef_point_t* point,
|
||||
int input_pixel_coords) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: point; type: simple_byref_const
|
||||
@@ -51,6 +56,8 @@ CEF_EXPORT cef_display_t* cef_display_get_nearest_point(
|
||||
CEF_EXPORT cef_display_t* cef_display_get_matching_bounds(
|
||||
const cef_rect_t* bounds,
|
||||
int input_pixel_coords) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: bounds; type: simple_byref_const
|
||||
@@ -70,6 +77,8 @@ CEF_EXPORT cef_display_t* cef_display_get_matching_bounds(
|
||||
}
|
||||
|
||||
CEF_EXPORT size_t cef_display_get_count() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Execute
|
||||
@@ -81,6 +90,8 @@ CEF_EXPORT size_t cef_display_get_count() {
|
||||
|
||||
CEF_EXPORT void cef_display_get_alls(size_t* displaysCount,
|
||||
cef_display_t** displays) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: displays; type: refptr_vec_same_byref
|
||||
@@ -115,6 +126,8 @@ namespace {
|
||||
// MEMBER FUNCTIONS - Body may be edited by hand.
|
||||
|
||||
int64 CEF_CALLBACK display_get_id(struct _cef_display_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -130,6 +143,8 @@ int64 CEF_CALLBACK display_get_id(struct _cef_display_t* self) {
|
||||
|
||||
float CEF_CALLBACK
|
||||
display_get_device_scale_factor(struct _cef_display_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -145,6 +160,8 @@ display_get_device_scale_factor(struct _cef_display_t* self) {
|
||||
|
||||
void CEF_CALLBACK display_convert_point_to_pixels(struct _cef_display_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -168,6 +185,8 @@ void CEF_CALLBACK display_convert_point_to_pixels(struct _cef_display_t* self,
|
||||
|
||||
void CEF_CALLBACK display_convert_point_from_pixels(struct _cef_display_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -190,6 +209,8 @@ void CEF_CALLBACK display_convert_point_from_pixels(struct _cef_display_t* self,
|
||||
}
|
||||
|
||||
cef_rect_t CEF_CALLBACK display_get_bounds(struct _cef_display_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -204,6 +225,8 @@ cef_rect_t CEF_CALLBACK display_get_bounds(struct _cef_display_t* self) {
|
||||
}
|
||||
|
||||
cef_rect_t CEF_CALLBACK display_get_work_area(struct _cef_display_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -218,6 +241,8 @@ cef_rect_t CEF_CALLBACK display_get_work_area(struct _cef_display_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK display_get_rotation(struct _cef_display_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -245,6 +270,12 @@ CefDisplayCppToC::CefDisplayCppToC() {
|
||||
GetStruct()->get_rotation = display_get_rotation;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefDisplayCppToC::~CefDisplayCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefDisplay>
|
||||
CefCppToCRefCounted<CefDisplayCppToC, CefDisplay, cef_display_t>::UnwrapDerived(
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=ec2f756b6c13b2442865c1b91fd000007967e76b$
|
||||
// $hash=ab108dbcd1d5aa62d37a545e5b7e4aad22e708b9$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_DISPLAY_CPPTOC_H_
|
||||
@@ -30,6 +30,7 @@ class CefDisplayCppToC
|
||||
: public CefCppToCRefCounted<CefDisplayCppToC, CefDisplay, cef_display_t> {
|
||||
public:
|
||||
CefDisplayCppToC();
|
||||
virtual ~CefDisplayCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_DISPLAY_CPPTOC_H_
|
||||
|
@@ -9,11 +9,12 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=c2ac1661c8a054728e4c3d5eacb8b8d23b6f7213$
|
||||
// $hash=54ed76ef41fc992a52da607a24b07d9469ca81e0$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/fill_layout_cpptoc.h"
|
||||
#include "libcef_dll/cpptoc/views/box_layout_cpptoc.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
namespace {
|
||||
|
||||
@@ -21,6 +22,8 @@ namespace {
|
||||
|
||||
cef_box_layout_t* CEF_CALLBACK
|
||||
fill_layout_as_box_layout(struct _cef_layout_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -38,6 +41,8 @@ fill_layout_as_box_layout(struct _cef_layout_t* self) {
|
||||
|
||||
cef_fill_layout_t* CEF_CALLBACK
|
||||
fill_layout_as_fill_layout(struct _cef_layout_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -54,6 +59,8 @@ fill_layout_as_fill_layout(struct _cef_layout_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK fill_layout_is_valid(struct _cef_layout_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -79,6 +86,12 @@ CefFillLayoutCppToC::CefFillLayoutCppToC() {
|
||||
GetStruct()->base.is_valid = fill_layout_is_valid;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefFillLayoutCppToC::~CefFillLayoutCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefFillLayout>
|
||||
CefCppToCRefCounted<CefFillLayoutCppToC, CefFillLayout, cef_fill_layout_t>::
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=cef3646532d2db6b41e3746f363de1bd18a77a78$
|
||||
// $hash=6de2324289f34cb9f6eb69f2dd91a161185aa19e$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_FILL_LAYOUT_CPPTOC_H_
|
||||
@@ -31,6 +31,7 @@ class CefFillLayoutCppToC : public CefCppToCRefCounted<CefFillLayoutCppToC,
|
||||
cef_fill_layout_t> {
|
||||
public:
|
||||
CefFillLayoutCppToC();
|
||||
virtual ~CefFillLayoutCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_FILL_LAYOUT_CPPTOC_H_
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=52fba8dedd3422e2c2fb47ae83a5e6e8ea4cede3$
|
||||
// $hash=307fd7a1cc06e767ef33817aa2f0d2407ed8fe7d$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/label_button_cpptoc.h"
|
||||
@@ -24,6 +24,7 @@
|
||||
#include "libcef_dll/cpptoc/views/window_cpptoc.h"
|
||||
#include "libcef_dll/ctocpp/views/button_delegate_ctocpp.h"
|
||||
#include "libcef_dll/ctocpp/views/view_delegate_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
// GLOBAL FUNCTIONS - Body may be edited by hand.
|
||||
|
||||
@@ -31,6 +32,8 @@ CEF_EXPORT cef_label_button_t* cef_label_button_create(
|
||||
cef_button_delegate_t* delegate,
|
||||
const cef_string_t* text,
|
||||
int with_frame) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: delegate; type: refptr_diff
|
||||
@@ -54,6 +57,8 @@ namespace {
|
||||
|
||||
cef_menu_button_t* CEF_CALLBACK
|
||||
label_button_as_menu_button(struct _cef_label_button_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -70,6 +75,8 @@ label_button_as_menu_button(struct _cef_label_button_t* self) {
|
||||
|
||||
void CEF_CALLBACK label_button_set_text(struct _cef_label_button_t* self,
|
||||
const cef_string_t* text) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -86,6 +93,8 @@ void CEF_CALLBACK label_button_set_text(struct _cef_label_button_t* self,
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
label_button_get_text(struct _cef_label_button_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -102,6 +111,8 @@ label_button_get_text(struct _cef_label_button_t* self) {
|
||||
void CEF_CALLBACK label_button_set_image(struct _cef_label_button_t* self,
|
||||
cef_button_state_t button_state,
|
||||
cef_image_t* image) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -117,6 +128,8 @@ void CEF_CALLBACK label_button_set_image(struct _cef_label_button_t* self,
|
||||
cef_image_t* CEF_CALLBACK
|
||||
label_button_get_image(struct _cef_label_button_t* self,
|
||||
cef_button_state_t button_state) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -134,6 +147,8 @@ label_button_get_image(struct _cef_label_button_t* self,
|
||||
void CEF_CALLBACK label_button_set_text_color(struct _cef_label_button_t* self,
|
||||
cef_button_state_t for_state,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -147,6 +162,8 @@ void CEF_CALLBACK label_button_set_text_color(struct _cef_label_button_t* self,
|
||||
void CEF_CALLBACK
|
||||
label_button_set_enabled_text_colors(struct _cef_label_button_t* self,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -159,6 +176,8 @@ label_button_set_enabled_text_colors(struct _cef_label_button_t* self,
|
||||
|
||||
void CEF_CALLBACK label_button_set_font_list(struct _cef_label_button_t* self,
|
||||
const cef_string_t* font_list) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -176,6 +195,8 @@ void CEF_CALLBACK label_button_set_font_list(struct _cef_label_button_t* self,
|
||||
void CEF_CALLBACK
|
||||
label_button_set_horizontal_alignment(struct _cef_label_button_t* self,
|
||||
cef_horizontal_alignment_t alignment) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -189,6 +210,8 @@ label_button_set_horizontal_alignment(struct _cef_label_button_t* self,
|
||||
void CEF_CALLBACK
|
||||
label_button_set_minimum_size(struct _cef_label_button_t* self,
|
||||
const cef_size_t* size) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -209,6 +232,8 @@ label_button_set_minimum_size(struct _cef_label_button_t* self,
|
||||
void CEF_CALLBACK
|
||||
label_button_set_maximum_size(struct _cef_label_button_t* self,
|
||||
const cef_size_t* size) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -228,6 +253,8 @@ label_button_set_maximum_size(struct _cef_label_button_t* self,
|
||||
|
||||
cef_label_button_t* CEF_CALLBACK
|
||||
label_button_as_label_button(struct _cef_button_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -245,6 +272,8 @@ label_button_as_label_button(struct _cef_button_t* self) {
|
||||
|
||||
void CEF_CALLBACK label_button_set_state(struct _cef_button_t* self,
|
||||
cef_button_state_t state) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -258,6 +287,8 @@ void CEF_CALLBACK label_button_set_state(struct _cef_button_t* self,
|
||||
|
||||
cef_button_state_t CEF_CALLBACK
|
||||
label_button_get_state(struct _cef_button_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -275,6 +306,8 @@ label_button_get_state(struct _cef_button_t* self) {
|
||||
|
||||
void CEF_CALLBACK label_button_set_ink_drop_enabled(struct _cef_button_t* self,
|
||||
int enabled) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -289,6 +322,8 @@ void CEF_CALLBACK label_button_set_ink_drop_enabled(struct _cef_button_t* self,
|
||||
void CEF_CALLBACK
|
||||
label_button_set_tooltip_text(struct _cef_button_t* self,
|
||||
const cef_string_t* tooltip_text) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -306,6 +341,8 @@ label_button_set_tooltip_text(struct _cef_button_t* self,
|
||||
|
||||
void CEF_CALLBACK label_button_set_accessible_name(struct _cef_button_t* self,
|
||||
const cef_string_t* name) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -323,6 +360,8 @@ void CEF_CALLBACK label_button_set_accessible_name(struct _cef_button_t* self,
|
||||
|
||||
cef_browser_view_t* CEF_CALLBACK
|
||||
label_button_as_browser_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -339,6 +378,8 @@ label_button_as_browser_view(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_button_t* CEF_CALLBACK label_button_as_button(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -355,6 +396,8 @@ cef_button_t* CEF_CALLBACK label_button_as_button(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_panel_t* CEF_CALLBACK label_button_as_panel(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -372,6 +415,8 @@ cef_panel_t* CEF_CALLBACK label_button_as_panel(struct _cef_view_t* self) {
|
||||
|
||||
cef_scroll_view_t* CEF_CALLBACK
|
||||
label_button_as_scroll_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -389,6 +434,8 @@ label_button_as_scroll_view(struct _cef_view_t* self) {
|
||||
|
||||
cef_textfield_t* CEF_CALLBACK
|
||||
label_button_as_textfield(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -406,6 +453,8 @@ label_button_as_textfield(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
label_button_get_type_string(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -423,6 +472,8 @@ label_button_get_type_string(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
label_button_to_string(struct _cef_view_t* self, int include_children) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -439,6 +490,8 @@ label_button_to_string(struct _cef_view_t* self, int include_children) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK label_button_is_valid(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -455,6 +508,8 @@ int CEF_CALLBACK label_button_is_valid(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK label_button_is_attached(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -472,6 +527,8 @@ int CEF_CALLBACK label_button_is_attached(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK label_button_is_same(struct _cef_view_t* self,
|
||||
struct _cef_view_t* that) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -493,6 +550,8 @@ int CEF_CALLBACK label_button_is_same(struct _cef_view_t* self,
|
||||
|
||||
struct _cef_view_delegate_t* CEF_CALLBACK
|
||||
label_button_get_delegate(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -510,6 +569,8 @@ label_button_get_delegate(struct _cef_view_t* self) {
|
||||
|
||||
struct _cef_window_t* CEF_CALLBACK
|
||||
label_button_get_window(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -526,6 +587,8 @@ label_button_get_window(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK label_button_get_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -542,6 +605,8 @@ int CEF_CALLBACK label_button_get_id(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK label_button_set_id(struct _cef_view_t* self, int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -554,6 +619,8 @@ void CEF_CALLBACK label_button_set_id(struct _cef_view_t* self, int id) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK label_button_get_group_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -571,6 +638,8 @@ int CEF_CALLBACK label_button_get_group_id(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK label_button_set_group_id(struct _cef_view_t* self,
|
||||
int group_id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -584,6 +653,8 @@ void CEF_CALLBACK label_button_set_group_id(struct _cef_view_t* self,
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
label_button_get_parent_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -601,6 +672,8 @@ label_button_get_parent_view(struct _cef_view_t* self) {
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
label_button_get_view_for_id(struct _cef_view_t* self, int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -618,6 +691,8 @@ label_button_get_view_for_id(struct _cef_view_t* self, int id) {
|
||||
|
||||
void CEF_CALLBACK label_button_set_bounds(struct _cef_view_t* self,
|
||||
const cef_rect_t* bounds) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -637,6 +712,8 @@ void CEF_CALLBACK label_button_set_bounds(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_rect_t CEF_CALLBACK label_button_get_bounds(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -654,6 +731,8 @@ cef_rect_t CEF_CALLBACK label_button_get_bounds(struct _cef_view_t* self) {
|
||||
|
||||
cef_rect_t CEF_CALLBACK
|
||||
label_button_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -671,6 +750,8 @@ label_button_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK label_button_set_size(struct _cef_view_t* self,
|
||||
const cef_size_t* size) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -690,6 +771,8 @@ void CEF_CALLBACK label_button_set_size(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK label_button_get_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -707,6 +790,8 @@ cef_size_t CEF_CALLBACK label_button_get_size(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK label_button_set_position(struct _cef_view_t* self,
|
||||
const cef_point_t* position) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -726,6 +811,8 @@ void CEF_CALLBACK label_button_set_position(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_point_t CEF_CALLBACK label_button_get_position(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -743,6 +830,8 @@ cef_point_t CEF_CALLBACK label_button_get_position(struct _cef_view_t* self) {
|
||||
|
||||
cef_size_t CEF_CALLBACK
|
||||
label_button_get_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -760,6 +849,8 @@ label_button_get_preferred_size(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK
|
||||
label_button_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -773,6 +864,8 @@ label_button_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
|
||||
cef_size_t CEF_CALLBACK
|
||||
label_button_get_minimum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -790,6 +883,8 @@ label_button_get_minimum_size(struct _cef_view_t* self) {
|
||||
|
||||
cef_size_t CEF_CALLBACK
|
||||
label_button_get_maximum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -807,6 +902,8 @@ label_button_get_maximum_size(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK label_button_get_height_for_width(struct _cef_view_t* self,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -823,6 +920,8 @@ int CEF_CALLBACK label_button_get_height_for_width(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK label_button_invalidate_layout(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -836,6 +935,8 @@ void CEF_CALLBACK label_button_invalidate_layout(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK label_button_set_visible(struct _cef_view_t* self,
|
||||
int visible) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -848,6 +949,8 @@ void CEF_CALLBACK label_button_set_visible(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK label_button_is_visible(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -864,6 +967,8 @@ int CEF_CALLBACK label_button_is_visible(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK label_button_is_drawn(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -881,6 +986,8 @@ int CEF_CALLBACK label_button_is_drawn(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK label_button_set_enabled(struct _cef_view_t* self,
|
||||
int enabled) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -893,6 +1000,8 @@ void CEF_CALLBACK label_button_set_enabled(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK label_button_is_enabled(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -910,6 +1019,8 @@ int CEF_CALLBACK label_button_is_enabled(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK label_button_set_focusable(struct _cef_view_t* self,
|
||||
int focusable) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -922,6 +1033,8 @@ void CEF_CALLBACK label_button_set_focusable(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK label_button_is_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -939,6 +1052,8 @@ int CEF_CALLBACK label_button_is_focusable(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK
|
||||
label_button_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -955,6 +1070,8 @@ label_button_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK label_button_request_focus(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -968,6 +1085,8 @@ void CEF_CALLBACK label_button_request_focus(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK label_button_set_background_color(struct _cef_view_t* self,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -981,6 +1100,8 @@ void CEF_CALLBACK label_button_set_background_color(struct _cef_view_t* self,
|
||||
|
||||
cef_color_t CEF_CALLBACK
|
||||
label_button_get_background_color(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -998,6 +1119,8 @@ label_button_get_background_color(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK label_button_convert_point_to_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1027,6 +1150,8 @@ int CEF_CALLBACK label_button_convert_point_to_screen(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK
|
||||
label_button_convert_point_from_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1055,6 +1180,8 @@ label_button_convert_point_from_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK label_button_convert_point_to_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1084,6 +1211,8 @@ int CEF_CALLBACK label_button_convert_point_to_window(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK
|
||||
label_button_convert_point_from_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1113,6 +1242,8 @@ label_button_convert_point_from_window(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK label_button_convert_point_to_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1146,6 +1277,8 @@ int CEF_CALLBACK label_button_convert_point_to_view(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK label_button_convert_point_from_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1260,6 +1393,12 @@ CefLabelButtonCppToC::CefLabelButtonCppToC() {
|
||||
label_button_convert_point_from_view;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefLabelButtonCppToC::~CefLabelButtonCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefLabelButton>
|
||||
CefCppToCRefCounted<CefLabelButtonCppToC, CefLabelButton, cef_label_button_t>::
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=16b8910c5ac13520e43c3449d28b515f6732f39f$
|
||||
// $hash=7a34fb72f1e0e39673410b1dbd9b4af364b37f21$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_LABEL_BUTTON_CPPTOC_H_
|
||||
@@ -33,6 +33,7 @@ class CefLabelButtonCppToC : public CefCppToCRefCounted<CefLabelButtonCppToC,
|
||||
cef_label_button_t> {
|
||||
public:
|
||||
CefLabelButtonCppToC();
|
||||
virtual ~CefLabelButtonCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_LABEL_BUTTON_CPPTOC_H_
|
||||
|
@@ -9,12 +9,13 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=17464b2b28c8fa2ae7f67978f93e2d8bc13fe1ed$
|
||||
// $hash=1871dbf9adbb5c92705ff30b72ac19735928ce4b$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/layout_cpptoc.h"
|
||||
#include "libcef_dll/cpptoc/views/box_layout_cpptoc.h"
|
||||
#include "libcef_dll/cpptoc/views/fill_layout_cpptoc.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
namespace {
|
||||
|
||||
@@ -22,6 +23,8 @@ namespace {
|
||||
|
||||
cef_box_layout_t* CEF_CALLBACK
|
||||
layout_as_box_layout(struct _cef_layout_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -37,6 +40,8 @@ layout_as_box_layout(struct _cef_layout_t* self) {
|
||||
|
||||
cef_fill_layout_t* CEF_CALLBACK
|
||||
layout_as_fill_layout(struct _cef_layout_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -51,6 +56,8 @@ layout_as_fill_layout(struct _cef_layout_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK layout_is_valid(struct _cef_layout_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -74,6 +81,12 @@ CefLayoutCppToC::CefLayoutCppToC() {
|
||||
GetStruct()->is_valid = layout_is_valid;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefLayoutCppToC::~CefLayoutCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefLayout>
|
||||
CefCppToCRefCounted<CefLayoutCppToC, CefLayout, cef_layout_t>::UnwrapDerived(
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=c132272a5808e10d27b10f4393bfc248c53ba76d$
|
||||
// $hash=d4eb9d13b07ad780b4941fa4122a45cde2684d21$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_LAYOUT_CPPTOC_H_
|
||||
@@ -34,6 +34,7 @@ class CefLayoutCppToC
|
||||
: public CefCppToCRefCounted<CefLayoutCppToC, CefLayout, cef_layout_t> {
|
||||
public:
|
||||
CefLayoutCppToC();
|
||||
virtual ~CefLayoutCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_LAYOUT_CPPTOC_H_
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=cb2373876547c8f8e0315043a37b80b9f3d91d48$
|
||||
// $hash=9965360aa4fabed5c6550b97ff32445652d24cb6$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/menu_button_cpptoc.h"
|
||||
@@ -25,6 +25,7 @@
|
||||
#include "libcef_dll/cpptoc/views/window_cpptoc.h"
|
||||
#include "libcef_dll/ctocpp/views/menu_button_delegate_ctocpp.h"
|
||||
#include "libcef_dll/ctocpp/views/view_delegate_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
// GLOBAL FUNCTIONS - Body may be edited by hand.
|
||||
|
||||
@@ -32,6 +33,8 @@ CEF_EXPORT cef_menu_button_t* cef_menu_button_create(
|
||||
cef_menu_button_delegate_t* delegate,
|
||||
const cef_string_t* text,
|
||||
int with_frame) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: delegate; type: refptr_diff
|
||||
@@ -58,6 +61,8 @@ menu_button_show_menu(struct _cef_menu_button_t* self,
|
||||
cef_menu_model_t* menu_model,
|
||||
const cef_point_t* screen_point,
|
||||
cef_menu_anchor_position_t anchor_position) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -81,6 +86,8 @@ menu_button_show_menu(struct _cef_menu_button_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK menu_button_trigger_menu(struct _cef_menu_button_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -93,6 +100,8 @@ void CEF_CALLBACK menu_button_trigger_menu(struct _cef_menu_button_t* self) {
|
||||
|
||||
cef_menu_button_t* CEF_CALLBACK
|
||||
menu_button_as_menu_button(struct _cef_label_button_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -110,6 +119,8 @@ menu_button_as_menu_button(struct _cef_label_button_t* self) {
|
||||
|
||||
void CEF_CALLBACK menu_button_set_text(struct _cef_label_button_t* self,
|
||||
const cef_string_t* text) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -127,6 +138,8 @@ void CEF_CALLBACK menu_button_set_text(struct _cef_label_button_t* self,
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
menu_button_get_text(struct _cef_label_button_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -145,6 +158,8 @@ menu_button_get_text(struct _cef_label_button_t* self) {
|
||||
void CEF_CALLBACK menu_button_set_image(struct _cef_label_button_t* self,
|
||||
cef_button_state_t button_state,
|
||||
cef_image_t* image) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -160,6 +175,8 @@ void CEF_CALLBACK menu_button_set_image(struct _cef_label_button_t* self,
|
||||
cef_image_t* CEF_CALLBACK
|
||||
menu_button_get_image(struct _cef_label_button_t* self,
|
||||
cef_button_state_t button_state) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -178,6 +195,8 @@ menu_button_get_image(struct _cef_label_button_t* self,
|
||||
void CEF_CALLBACK menu_button_set_text_color(struct _cef_label_button_t* self,
|
||||
cef_button_state_t for_state,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -192,6 +211,8 @@ void CEF_CALLBACK menu_button_set_text_color(struct _cef_label_button_t* self,
|
||||
void CEF_CALLBACK
|
||||
menu_button_set_enabled_text_colors(struct _cef_label_button_t* self,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -205,6 +226,8 @@ menu_button_set_enabled_text_colors(struct _cef_label_button_t* self,
|
||||
|
||||
void CEF_CALLBACK menu_button_set_font_list(struct _cef_label_button_t* self,
|
||||
const cef_string_t* font_list) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -223,6 +246,8 @@ void CEF_CALLBACK menu_button_set_font_list(struct _cef_label_button_t* self,
|
||||
void CEF_CALLBACK
|
||||
menu_button_set_horizontal_alignment(struct _cef_label_button_t* self,
|
||||
cef_horizontal_alignment_t alignment) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -236,6 +261,8 @@ menu_button_set_horizontal_alignment(struct _cef_label_button_t* self,
|
||||
|
||||
void CEF_CALLBACK menu_button_set_minimum_size(struct _cef_label_button_t* self,
|
||||
const cef_size_t* size) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -256,6 +283,8 @@ void CEF_CALLBACK menu_button_set_minimum_size(struct _cef_label_button_t* self,
|
||||
|
||||
void CEF_CALLBACK menu_button_set_maximum_size(struct _cef_label_button_t* self,
|
||||
const cef_size_t* size) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -276,6 +305,8 @@ void CEF_CALLBACK menu_button_set_maximum_size(struct _cef_label_button_t* self,
|
||||
|
||||
cef_label_button_t* CEF_CALLBACK
|
||||
menu_button_as_label_button(struct _cef_button_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -293,6 +324,8 @@ menu_button_as_label_button(struct _cef_button_t* self) {
|
||||
|
||||
void CEF_CALLBACK menu_button_set_state(struct _cef_button_t* self,
|
||||
cef_button_state_t state) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -306,6 +339,8 @@ void CEF_CALLBACK menu_button_set_state(struct _cef_button_t* self,
|
||||
|
||||
cef_button_state_t CEF_CALLBACK
|
||||
menu_button_get_state(struct _cef_button_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -323,6 +358,8 @@ menu_button_get_state(struct _cef_button_t* self) {
|
||||
|
||||
void CEF_CALLBACK menu_button_set_ink_drop_enabled(struct _cef_button_t* self,
|
||||
int enabled) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -337,6 +374,8 @@ void CEF_CALLBACK menu_button_set_ink_drop_enabled(struct _cef_button_t* self,
|
||||
void CEF_CALLBACK
|
||||
menu_button_set_tooltip_text(struct _cef_button_t* self,
|
||||
const cef_string_t* tooltip_text) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -354,6 +393,8 @@ menu_button_set_tooltip_text(struct _cef_button_t* self,
|
||||
|
||||
void CEF_CALLBACK menu_button_set_accessible_name(struct _cef_button_t* self,
|
||||
const cef_string_t* name) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -371,6 +412,8 @@ void CEF_CALLBACK menu_button_set_accessible_name(struct _cef_button_t* self,
|
||||
|
||||
cef_browser_view_t* CEF_CALLBACK
|
||||
menu_button_as_browser_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -387,6 +430,8 @@ menu_button_as_browser_view(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_button_t* CEF_CALLBACK menu_button_as_button(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -403,6 +448,8 @@ cef_button_t* CEF_CALLBACK menu_button_as_button(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_panel_t* CEF_CALLBACK menu_button_as_panel(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -420,6 +467,8 @@ cef_panel_t* CEF_CALLBACK menu_button_as_panel(struct _cef_view_t* self) {
|
||||
|
||||
cef_scroll_view_t* CEF_CALLBACK
|
||||
menu_button_as_scroll_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -437,6 +486,8 @@ menu_button_as_scroll_view(struct _cef_view_t* self) {
|
||||
|
||||
cef_textfield_t* CEF_CALLBACK
|
||||
menu_button_as_textfield(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -454,6 +505,8 @@ menu_button_as_textfield(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
menu_button_get_type_string(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -471,6 +524,8 @@ menu_button_get_type_string(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
menu_button_to_string(struct _cef_view_t* self, int include_children) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -487,6 +542,8 @@ menu_button_to_string(struct _cef_view_t* self, int include_children) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK menu_button_is_valid(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -503,6 +560,8 @@ int CEF_CALLBACK menu_button_is_valid(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK menu_button_is_attached(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -520,6 +579,8 @@ int CEF_CALLBACK menu_button_is_attached(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK menu_button_is_same(struct _cef_view_t* self,
|
||||
struct _cef_view_t* that) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -541,6 +602,8 @@ int CEF_CALLBACK menu_button_is_same(struct _cef_view_t* self,
|
||||
|
||||
struct _cef_view_delegate_t* CEF_CALLBACK
|
||||
menu_button_get_delegate(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -558,6 +621,8 @@ menu_button_get_delegate(struct _cef_view_t* self) {
|
||||
|
||||
struct _cef_window_t* CEF_CALLBACK
|
||||
menu_button_get_window(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -574,6 +639,8 @@ menu_button_get_window(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK menu_button_get_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -590,6 +657,8 @@ int CEF_CALLBACK menu_button_get_id(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK menu_button_set_id(struct _cef_view_t* self, int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -602,6 +671,8 @@ void CEF_CALLBACK menu_button_set_id(struct _cef_view_t* self, int id) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK menu_button_get_group_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -619,6 +690,8 @@ int CEF_CALLBACK menu_button_get_group_id(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK menu_button_set_group_id(struct _cef_view_t* self,
|
||||
int group_id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -632,6 +705,8 @@ void CEF_CALLBACK menu_button_set_group_id(struct _cef_view_t* self,
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
menu_button_get_parent_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -649,6 +724,8 @@ menu_button_get_parent_view(struct _cef_view_t* self) {
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
menu_button_get_view_for_id(struct _cef_view_t* self, int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -666,6 +743,8 @@ menu_button_get_view_for_id(struct _cef_view_t* self, int id) {
|
||||
|
||||
void CEF_CALLBACK menu_button_set_bounds(struct _cef_view_t* self,
|
||||
const cef_rect_t* bounds) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -685,6 +764,8 @@ void CEF_CALLBACK menu_button_set_bounds(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_rect_t CEF_CALLBACK menu_button_get_bounds(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -702,6 +783,8 @@ cef_rect_t CEF_CALLBACK menu_button_get_bounds(struct _cef_view_t* self) {
|
||||
|
||||
cef_rect_t CEF_CALLBACK
|
||||
menu_button_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -719,6 +802,8 @@ menu_button_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK menu_button_set_size(struct _cef_view_t* self,
|
||||
const cef_size_t* size) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -738,6 +823,8 @@ void CEF_CALLBACK menu_button_set_size(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK menu_button_get_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -755,6 +842,8 @@ cef_size_t CEF_CALLBACK menu_button_get_size(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK menu_button_set_position(struct _cef_view_t* self,
|
||||
const cef_point_t* position) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -774,6 +863,8 @@ void CEF_CALLBACK menu_button_set_position(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_point_t CEF_CALLBACK menu_button_get_position(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -791,6 +882,8 @@ cef_point_t CEF_CALLBACK menu_button_get_position(struct _cef_view_t* self) {
|
||||
|
||||
cef_size_t CEF_CALLBACK
|
||||
menu_button_get_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -807,6 +900,8 @@ menu_button_get_preferred_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK menu_button_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -819,6 +914,8 @@ void CEF_CALLBACK menu_button_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK menu_button_get_minimum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -835,6 +932,8 @@ cef_size_t CEF_CALLBACK menu_button_get_minimum_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK menu_button_get_maximum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -852,6 +951,8 @@ cef_size_t CEF_CALLBACK menu_button_get_maximum_size(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK menu_button_get_height_for_width(struct _cef_view_t* self,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -868,6 +969,8 @@ int CEF_CALLBACK menu_button_get_height_for_width(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK menu_button_invalidate_layout(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -881,6 +984,8 @@ void CEF_CALLBACK menu_button_invalidate_layout(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK menu_button_set_visible(struct _cef_view_t* self,
|
||||
int visible) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -893,6 +998,8 @@ void CEF_CALLBACK menu_button_set_visible(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK menu_button_is_visible(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -909,6 +1016,8 @@ int CEF_CALLBACK menu_button_is_visible(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK menu_button_is_drawn(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -926,6 +1035,8 @@ int CEF_CALLBACK menu_button_is_drawn(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK menu_button_set_enabled(struct _cef_view_t* self,
|
||||
int enabled) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -938,6 +1049,8 @@ void CEF_CALLBACK menu_button_set_enabled(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK menu_button_is_enabled(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -955,6 +1068,8 @@ int CEF_CALLBACK menu_button_is_enabled(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK menu_button_set_focusable(struct _cef_view_t* self,
|
||||
int focusable) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -967,6 +1082,8 @@ void CEF_CALLBACK menu_button_set_focusable(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK menu_button_is_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -984,6 +1101,8 @@ int CEF_CALLBACK menu_button_is_focusable(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK
|
||||
menu_button_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1000,6 +1119,8 @@ menu_button_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK menu_button_request_focus(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1013,6 +1134,8 @@ void CEF_CALLBACK menu_button_request_focus(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK menu_button_set_background_color(struct _cef_view_t* self,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1026,6 +1149,8 @@ void CEF_CALLBACK menu_button_set_background_color(struct _cef_view_t* self,
|
||||
|
||||
cef_color_t CEF_CALLBACK
|
||||
menu_button_get_background_color(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1043,6 +1168,8 @@ menu_button_get_background_color(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK menu_button_convert_point_to_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1071,6 +1198,8 @@ int CEF_CALLBACK menu_button_convert_point_to_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK menu_button_convert_point_from_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1099,6 +1228,8 @@ int CEF_CALLBACK menu_button_convert_point_from_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK menu_button_convert_point_to_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1127,6 +1258,8 @@ int CEF_CALLBACK menu_button_convert_point_to_window(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK menu_button_convert_point_from_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1156,6 +1289,8 @@ int CEF_CALLBACK menu_button_convert_point_from_window(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK menu_button_convert_point_to_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1189,6 +1324,8 @@ int CEF_CALLBACK menu_button_convert_point_to_view(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK menu_button_convert_point_from_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1309,6 +1446,12 @@ CefMenuButtonCppToC::CefMenuButtonCppToC() {
|
||||
menu_button_convert_point_from_view;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefMenuButtonCppToC::~CefMenuButtonCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefMenuButton>
|
||||
CefCppToCRefCounted<CefMenuButtonCppToC, CefMenuButton, cef_menu_button_t>::
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=be11d5f9cef9a74b6ba3bf1133769e33b730dc71$
|
||||
// $hash=7c8d4e501014784b78f091915c13675d5229c5f3$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_MENU_BUTTON_CPPTOC_H_
|
||||
@@ -31,6 +31,7 @@ class CefMenuButtonCppToC : public CefCppToCRefCounted<CefMenuButtonCppToC,
|
||||
cef_menu_button_t> {
|
||||
public:
|
||||
CefMenuButtonCppToC();
|
||||
virtual ~CefMenuButtonCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_MENU_BUTTON_CPPTOC_H_
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=76c6cfc0ebe911f66c2e48897c8ed6b4a375d6bb$
|
||||
// $hash=b65d9f74e43387e0439b39b8d08d55bb2ee0037b$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/menu_button_delegate_cpptoc.h"
|
||||
@@ -17,6 +17,7 @@
|
||||
#include "libcef_dll/ctocpp/views/menu_button_ctocpp.h"
|
||||
#include "libcef_dll/ctocpp/views/menu_button_pressed_lock_ctocpp.h"
|
||||
#include "libcef_dll/ctocpp/views/view_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
namespace {
|
||||
|
||||
@@ -27,6 +28,8 @@ void CEF_CALLBACK menu_button_delegate_on_menu_button_pressed(
|
||||
cef_menu_button_t* menu_button,
|
||||
const cef_point_t* screen_point,
|
||||
cef_menu_button_pressed_lock_t* button_pressed_lock) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -57,6 +60,8 @@ void CEF_CALLBACK menu_button_delegate_on_menu_button_pressed(
|
||||
void CEF_CALLBACK
|
||||
menu_button_delegate_on_button_pressed(struct _cef_button_delegate_t* self,
|
||||
cef_button_t* button) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -76,6 +81,8 @@ menu_button_delegate_on_button_pressed(struct _cef_button_delegate_t* self,
|
||||
void CEF_CALLBACK menu_button_delegate_on_button_state_changed(
|
||||
struct _cef_button_delegate_t* self,
|
||||
cef_button_t* button) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -95,6 +102,8 @@ void CEF_CALLBACK menu_button_delegate_on_button_state_changed(
|
||||
cef_size_t CEF_CALLBACK
|
||||
menu_button_delegate_get_preferred_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -117,6 +126,8 @@ menu_button_delegate_get_preferred_size(struct _cef_view_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
menu_button_delegate_get_minimum_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -139,6 +150,8 @@ menu_button_delegate_get_minimum_size(struct _cef_view_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
menu_button_delegate_get_maximum_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -162,6 +175,8 @@ int CEF_CALLBACK
|
||||
menu_button_delegate_get_height_for_width(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -186,6 +201,8 @@ menu_button_delegate_on_parent_view_changed(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int added,
|
||||
cef_view_t* parent) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -212,6 +229,8 @@ menu_button_delegate_on_child_view_changed(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int added,
|
||||
cef_view_t* child) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -236,6 +255,8 @@ menu_button_delegate_on_child_view_changed(struct _cef_view_delegate_t* self,
|
||||
void CEF_CALLBACK
|
||||
menu_button_delegate_on_focus(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -255,6 +276,8 @@ menu_button_delegate_on_focus(struct _cef_view_delegate_t* self,
|
||||
void CEF_CALLBACK
|
||||
menu_button_delegate_on_blur(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -297,6 +320,12 @@ CefMenuButtonDelegateCppToC::CefMenuButtonDelegateCppToC() {
|
||||
GetStruct()->base.base.on_blur = menu_button_delegate_on_blur;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefMenuButtonDelegateCppToC::~CefMenuButtonDelegateCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefMenuButtonDelegate> CefCppToCRefCounted<
|
||||
CefMenuButtonDelegateCppToC,
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=e4938a46b6be2a5efcc9a8a84a92fabddfeb6113$
|
||||
// $hash=1d6360a9081c8c22ee3251c25af75983ac53a466$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_MENU_BUTTON_DELEGATE_CPPTOC_H_
|
||||
@@ -34,6 +34,7 @@ class CefMenuButtonDelegateCppToC
|
||||
cef_menu_button_delegate_t> {
|
||||
public:
|
||||
CefMenuButtonDelegateCppToC();
|
||||
virtual ~CefMenuButtonDelegateCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_MENU_BUTTON_DELEGATE_CPPTOC_H_
|
||||
|
@@ -9,15 +9,22 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=3c9f08184ec1e44891975a6c3a5e4e18bacb81c3$
|
||||
// $hash=c20a84601d2c24d8925303f55784f5515f783e60$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/menu_button_pressed_lock_cpptoc.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
// CONSTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefMenuButtonPressedLockCppToC::CefMenuButtonPressedLockCppToC() {}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefMenuButtonPressedLockCppToC::~CefMenuButtonPressedLockCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefMenuButtonPressedLock>
|
||||
CefCppToCRefCounted<CefMenuButtonPressedLockCppToC,
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=ff1d8d710ed44125cb88f6eda21e44d74e9b8426$
|
||||
// $hash=28affe08d2caa2c601575f23bf5c2c757ca3d9d7$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_MENU_BUTTON_PRESSED_LOCK_CPPTOC_H_
|
||||
@@ -34,6 +34,7 @@ class CefMenuButtonPressedLockCppToC
|
||||
cef_menu_button_pressed_lock_t> {
|
||||
public:
|
||||
CefMenuButtonPressedLockCppToC();
|
||||
virtual ~CefMenuButtonPressedLockCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_MENU_BUTTON_PRESSED_LOCK_CPPTOC_H_
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=ca906b2ea84bb6bfeab3976d8e444668570fe25a$
|
||||
// $hash=240cea5f2c68ff9ba01149e354ece03a17058755$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/panel_cpptoc.h"
|
||||
@@ -24,10 +24,13 @@
|
||||
#include "libcef_dll/cpptoc/views/window_cpptoc.h"
|
||||
#include "libcef_dll/ctocpp/views/panel_delegate_ctocpp.h"
|
||||
#include "libcef_dll/ctocpp/views/view_delegate_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
// GLOBAL FUNCTIONS - Body may be edited by hand.
|
||||
|
||||
CEF_EXPORT cef_panel_t* cef_panel_create(cef_panel_delegate_t* delegate) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Unverified params: delegate
|
||||
@@ -45,6 +48,8 @@ namespace {
|
||||
// MEMBER FUNCTIONS - Body may be edited by hand.
|
||||
|
||||
struct _cef_window_t* CEF_CALLBACK panel_as_window(struct _cef_panel_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -60,6 +65,8 @@ struct _cef_window_t* CEF_CALLBACK panel_as_window(struct _cef_panel_t* self) {
|
||||
|
||||
cef_fill_layout_t* CEF_CALLBACK
|
||||
panel_set_to_fill_layout(struct _cef_panel_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -77,6 +84,8 @@ panel_set_to_fill_layout(struct _cef_panel_t* self) {
|
||||
cef_box_layout_t* CEF_CALLBACK
|
||||
panel_set_to_box_layout(struct _cef_panel_t* self,
|
||||
const struct _cef_box_layout_settings_t* settings) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -101,6 +110,8 @@ panel_set_to_box_layout(struct _cef_panel_t* self,
|
||||
}
|
||||
|
||||
cef_layout_t* CEF_CALLBACK panel_get_layout(struct _cef_panel_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -115,6 +126,8 @@ cef_layout_t* CEF_CALLBACK panel_get_layout(struct _cef_panel_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK panel_layout(struct _cef_panel_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -127,6 +140,8 @@ void CEF_CALLBACK panel_layout(struct _cef_panel_t* self) {
|
||||
|
||||
void CEF_CALLBACK panel_add_child_view(struct _cef_panel_t* self,
|
||||
struct _cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -144,6 +159,8 @@ void CEF_CALLBACK panel_add_child_view(struct _cef_panel_t* self,
|
||||
void CEF_CALLBACK panel_add_child_view_at(struct _cef_panel_t* self,
|
||||
struct _cef_view_t* view,
|
||||
int index) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -165,6 +182,8 @@ void CEF_CALLBACK panel_add_child_view_at(struct _cef_panel_t* self,
|
||||
void CEF_CALLBACK panel_reorder_child_view(struct _cef_panel_t* self,
|
||||
struct _cef_view_t* view,
|
||||
int index) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -182,6 +201,8 @@ void CEF_CALLBACK panel_reorder_child_view(struct _cef_panel_t* self,
|
||||
|
||||
void CEF_CALLBACK panel_remove_child_view(struct _cef_panel_t* self,
|
||||
struct _cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -197,6 +218,8 @@ void CEF_CALLBACK panel_remove_child_view(struct _cef_panel_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK panel_remove_all_child_views(struct _cef_panel_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -208,6 +231,8 @@ void CEF_CALLBACK panel_remove_all_child_views(struct _cef_panel_t* self) {
|
||||
}
|
||||
|
||||
size_t CEF_CALLBACK panel_get_child_view_count(struct _cef_panel_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -223,6 +248,8 @@ size_t CEF_CALLBACK panel_get_child_view_count(struct _cef_panel_t* self) {
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
panel_get_child_view_at(struct _cef_panel_t* self, int index) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -242,6 +269,8 @@ panel_get_child_view_at(struct _cef_panel_t* self, int index) {
|
||||
|
||||
cef_browser_view_t* CEF_CALLBACK
|
||||
panel_as_browser_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -258,6 +287,8 @@ panel_as_browser_view(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_button_t* CEF_CALLBACK panel_as_button(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -273,6 +304,8 @@ cef_button_t* CEF_CALLBACK panel_as_button(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_panel_t* CEF_CALLBACK panel_as_panel(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -288,6 +321,8 @@ cef_panel_t* CEF_CALLBACK panel_as_panel(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_scroll_view_t* CEF_CALLBACK panel_as_scroll_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -303,6 +338,8 @@ cef_scroll_view_t* CEF_CALLBACK panel_as_scroll_view(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_textfield_t* CEF_CALLBACK panel_as_textfield(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -319,6 +356,8 @@ cef_textfield_t* CEF_CALLBACK panel_as_textfield(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
panel_get_type_string(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -335,6 +374,8 @@ panel_get_type_string(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK panel_to_string(struct _cef_view_t* self,
|
||||
int include_children) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -350,6 +391,8 @@ cef_string_userfree_t CEF_CALLBACK panel_to_string(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK panel_is_valid(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -365,6 +408,8 @@ int CEF_CALLBACK panel_is_valid(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK panel_is_attached(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -381,6 +426,8 @@ int CEF_CALLBACK panel_is_attached(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK panel_is_same(struct _cef_view_t* self,
|
||||
struct _cef_view_t* that) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -401,6 +448,8 @@ int CEF_CALLBACK panel_is_same(struct _cef_view_t* self,
|
||||
|
||||
struct _cef_view_delegate_t* CEF_CALLBACK
|
||||
panel_get_delegate(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -416,6 +465,8 @@ panel_get_delegate(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
struct _cef_window_t* CEF_CALLBACK panel_get_window(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -431,6 +482,8 @@ struct _cef_window_t* CEF_CALLBACK panel_get_window(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK panel_get_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -446,6 +499,8 @@ int CEF_CALLBACK panel_get_id(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK panel_set_id(struct _cef_view_t* self, int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -457,6 +512,8 @@ void CEF_CALLBACK panel_set_id(struct _cef_view_t* self, int id) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK panel_get_group_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -472,6 +529,8 @@ int CEF_CALLBACK panel_get_group_id(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK panel_set_group_id(struct _cef_view_t* self, int group_id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -485,6 +544,8 @@ void CEF_CALLBACK panel_set_group_id(struct _cef_view_t* self, int group_id) {
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
panel_get_parent_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -502,6 +563,8 @@ panel_get_parent_view(struct _cef_view_t* self) {
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK panel_get_view_for_id(struct _cef_view_t* self,
|
||||
int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -519,6 +582,8 @@ struct _cef_view_t* CEF_CALLBACK panel_get_view_for_id(struct _cef_view_t* self,
|
||||
|
||||
void CEF_CALLBACK panel_set_bounds(struct _cef_view_t* self,
|
||||
const cef_rect_t* bounds) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -538,6 +603,8 @@ void CEF_CALLBACK panel_set_bounds(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_rect_t CEF_CALLBACK panel_get_bounds(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -553,6 +620,8 @@ cef_rect_t CEF_CALLBACK panel_get_bounds(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_rect_t CEF_CALLBACK panel_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -569,6 +638,8 @@ cef_rect_t CEF_CALLBACK panel_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK panel_set_size(struct _cef_view_t* self,
|
||||
const cef_size_t* size) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -587,6 +658,8 @@ void CEF_CALLBACK panel_set_size(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK panel_get_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -603,6 +676,8 @@ cef_size_t CEF_CALLBACK panel_get_size(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK panel_set_position(struct _cef_view_t* self,
|
||||
const cef_point_t* position) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -622,6 +697,8 @@ void CEF_CALLBACK panel_set_position(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_point_t CEF_CALLBACK panel_get_position(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -637,6 +714,8 @@ cef_point_t CEF_CALLBACK panel_get_position(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK panel_get_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -652,6 +731,8 @@ cef_size_t CEF_CALLBACK panel_get_preferred_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK panel_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -664,6 +745,8 @@ void CEF_CALLBACK panel_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK panel_get_minimum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -679,6 +762,8 @@ cef_size_t CEF_CALLBACK panel_get_minimum_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK panel_get_maximum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -695,6 +780,8 @@ cef_size_t CEF_CALLBACK panel_get_maximum_size(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK panel_get_height_for_width(struct _cef_view_t* self,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -710,6 +797,8 @@ int CEF_CALLBACK panel_get_height_for_width(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK panel_invalidate_layout(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -721,6 +810,8 @@ void CEF_CALLBACK panel_invalidate_layout(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK panel_set_visible(struct _cef_view_t* self, int visible) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -733,6 +824,8 @@ void CEF_CALLBACK panel_set_visible(struct _cef_view_t* self, int visible) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK panel_is_visible(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -748,6 +841,8 @@ int CEF_CALLBACK panel_is_visible(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK panel_is_drawn(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -763,6 +858,8 @@ int CEF_CALLBACK panel_is_drawn(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK panel_set_enabled(struct _cef_view_t* self, int enabled) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -775,6 +872,8 @@ void CEF_CALLBACK panel_set_enabled(struct _cef_view_t* self, int enabled) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK panel_is_enabled(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -790,6 +889,8 @@ int CEF_CALLBACK panel_is_enabled(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK panel_set_focusable(struct _cef_view_t* self, int focusable) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -802,6 +903,8 @@ void CEF_CALLBACK panel_set_focusable(struct _cef_view_t* self, int focusable) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK panel_is_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -817,6 +920,8 @@ int CEF_CALLBACK panel_is_focusable(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK panel_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -832,6 +937,8 @@ int CEF_CALLBACK panel_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK panel_request_focus(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -844,6 +951,8 @@ void CEF_CALLBACK panel_request_focus(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK panel_set_background_color(struct _cef_view_t* self,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -856,6 +965,8 @@ void CEF_CALLBACK panel_set_background_color(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_color_t CEF_CALLBACK panel_get_background_color(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -873,6 +984,8 @@ cef_color_t CEF_CALLBACK panel_get_background_color(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK panel_convert_point_to_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -900,6 +1013,8 @@ int CEF_CALLBACK panel_convert_point_to_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK panel_convert_point_from_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -927,6 +1042,8 @@ int CEF_CALLBACK panel_convert_point_from_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK panel_convert_point_to_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -954,6 +1071,8 @@ int CEF_CALLBACK panel_convert_point_to_window(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK panel_convert_point_from_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -982,6 +1101,8 @@ int CEF_CALLBACK panel_convert_point_from_window(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK panel_convert_point_to_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1015,6 +1136,8 @@ int CEF_CALLBACK panel_convert_point_to_view(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK panel_convert_point_from_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1113,6 +1236,12 @@ CefPanelCppToC::CefPanelCppToC() {
|
||||
GetStruct()->base.convert_point_from_view = panel_convert_point_from_view;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefPanelCppToC::~CefPanelCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefPanel>
|
||||
CefCppToCRefCounted<CefPanelCppToC, CefPanel, cef_panel_t>::UnwrapDerived(
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=dc46be461e44ff5b7e3a70ac9b0e7a08dd62fe08$
|
||||
// $hash=a897631d429250fbb701247e659eeebc8385f400$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_PANEL_CPPTOC_H_
|
||||
@@ -38,6 +38,7 @@ class CefPanelCppToC
|
||||
: public CefCppToCRefCounted<CefPanelCppToC, CefPanel, cef_panel_t> {
|
||||
public:
|
||||
CefPanelCppToC();
|
||||
virtual ~CefPanelCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_PANEL_CPPTOC_H_
|
||||
|
@@ -9,12 +9,13 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=c5ec9b06b8a6dca099c8cb56929c11bd17314580$
|
||||
// $hash=8d53561e0ce0fcfc46d9a6803c2ed6a7c300a670$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/panel_delegate_cpptoc.h"
|
||||
#include "libcef_dll/cpptoc/views/window_delegate_cpptoc.h"
|
||||
#include "libcef_dll/ctocpp/views/view_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
namespace {
|
||||
|
||||
@@ -23,6 +24,8 @@ namespace {
|
||||
cef_size_t CEF_CALLBACK
|
||||
panel_delegate_get_preferred_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -45,6 +48,8 @@ panel_delegate_get_preferred_size(struct _cef_view_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
panel_delegate_get_minimum_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -67,6 +72,8 @@ panel_delegate_get_minimum_size(struct _cef_view_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
panel_delegate_get_maximum_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -90,6 +97,8 @@ int CEF_CALLBACK
|
||||
panel_delegate_get_height_for_width(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -114,6 +123,8 @@ panel_delegate_on_parent_view_changed(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int added,
|
||||
cef_view_t* parent) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -139,6 +150,8 @@ panel_delegate_on_child_view_changed(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int added,
|
||||
cef_view_t* child) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -161,6 +174,8 @@ panel_delegate_on_child_view_changed(struct _cef_view_delegate_t* self,
|
||||
|
||||
void CEF_CALLBACK panel_delegate_on_focus(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -178,6 +193,8 @@ void CEF_CALLBACK panel_delegate_on_focus(struct _cef_view_delegate_t* self,
|
||||
|
||||
void CEF_CALLBACK panel_delegate_on_blur(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -210,6 +227,12 @@ CefPanelDelegateCppToC::CefPanelDelegateCppToC() {
|
||||
GetStruct()->base.on_blur = panel_delegate_on_blur;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefPanelDelegateCppToC::~CefPanelDelegateCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefPanelDelegate> CefCppToCRefCounted<
|
||||
CefPanelDelegateCppToC,
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=6edef25453e4214f5e5fcc0ab6e8d52ff79a937f$
|
||||
// $hash=687e38a03059a2f9f1511b52e48eaf2cec8e6773$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_PANEL_DELEGATE_CPPTOC_H_
|
||||
@@ -32,6 +32,7 @@ class CefPanelDelegateCppToC
|
||||
cef_panel_delegate_t> {
|
||||
public:
|
||||
CefPanelDelegateCppToC();
|
||||
virtual ~CefPanelDelegateCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_PANEL_DELEGATE_CPPTOC_H_
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=2bb785cef5ad691760cb51e5c93b148a4e945a98$
|
||||
// $hash=ce00a8514532f6218eabebdc138831103fb303a5$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/scroll_view_cpptoc.h"
|
||||
@@ -20,11 +20,14 @@
|
||||
#include "libcef_dll/cpptoc/views/view_cpptoc.h"
|
||||
#include "libcef_dll/cpptoc/views/window_cpptoc.h"
|
||||
#include "libcef_dll/ctocpp/views/view_delegate_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
// GLOBAL FUNCTIONS - Body may be edited by hand.
|
||||
|
||||
CEF_EXPORT cef_scroll_view_t* cef_scroll_view_create(
|
||||
struct _cef_view_delegate_t* delegate) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Unverified params: delegate
|
||||
@@ -43,6 +46,8 @@ namespace {
|
||||
|
||||
void CEF_CALLBACK scroll_view_set_content_view(struct _cef_scroll_view_t* self,
|
||||
struct _cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -59,6 +64,8 @@ void CEF_CALLBACK scroll_view_set_content_view(struct _cef_scroll_view_t* self,
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
scroll_view_get_content_view(struct _cef_scroll_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -74,6 +81,8 @@ scroll_view_get_content_view(struct _cef_scroll_view_t* self) {
|
||||
|
||||
cef_rect_t CEF_CALLBACK
|
||||
scroll_view_get_visible_content_rect(struct _cef_scroll_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -89,6 +98,8 @@ scroll_view_get_visible_content_rect(struct _cef_scroll_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK
|
||||
scroll_view_has_horizontal_scrollbar(struct _cef_scroll_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -104,6 +115,8 @@ scroll_view_has_horizontal_scrollbar(struct _cef_scroll_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK
|
||||
scroll_view_get_horizontal_scrollbar_height(struct _cef_scroll_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -119,6 +132,8 @@ scroll_view_get_horizontal_scrollbar_height(struct _cef_scroll_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK
|
||||
scroll_view_has_vertical_scrollbar(struct _cef_scroll_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -134,6 +149,8 @@ scroll_view_has_vertical_scrollbar(struct _cef_scroll_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK
|
||||
scroll_view_get_vertical_scrollbar_width(struct _cef_scroll_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -149,6 +166,8 @@ scroll_view_get_vertical_scrollbar_width(struct _cef_scroll_view_t* self) {
|
||||
|
||||
cef_browser_view_t* CEF_CALLBACK
|
||||
scroll_view_as_browser_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -165,6 +184,8 @@ scroll_view_as_browser_view(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_button_t* CEF_CALLBACK scroll_view_as_button(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -181,6 +202,8 @@ cef_button_t* CEF_CALLBACK scroll_view_as_button(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_panel_t* CEF_CALLBACK scroll_view_as_panel(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -198,6 +221,8 @@ cef_panel_t* CEF_CALLBACK scroll_view_as_panel(struct _cef_view_t* self) {
|
||||
|
||||
cef_scroll_view_t* CEF_CALLBACK
|
||||
scroll_view_as_scroll_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -215,6 +240,8 @@ scroll_view_as_scroll_view(struct _cef_view_t* self) {
|
||||
|
||||
cef_textfield_t* CEF_CALLBACK
|
||||
scroll_view_as_textfield(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -232,6 +259,8 @@ scroll_view_as_textfield(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
scroll_view_get_type_string(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -249,6 +278,8 @@ scroll_view_get_type_string(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
scroll_view_to_string(struct _cef_view_t* self, int include_children) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -265,6 +296,8 @@ scroll_view_to_string(struct _cef_view_t* self, int include_children) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK scroll_view_is_valid(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -281,6 +314,8 @@ int CEF_CALLBACK scroll_view_is_valid(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK scroll_view_is_attached(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -298,6 +333,8 @@ int CEF_CALLBACK scroll_view_is_attached(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK scroll_view_is_same(struct _cef_view_t* self,
|
||||
struct _cef_view_t* that) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -319,6 +356,8 @@ int CEF_CALLBACK scroll_view_is_same(struct _cef_view_t* self,
|
||||
|
||||
struct _cef_view_delegate_t* CEF_CALLBACK
|
||||
scroll_view_get_delegate(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -336,6 +375,8 @@ scroll_view_get_delegate(struct _cef_view_t* self) {
|
||||
|
||||
struct _cef_window_t* CEF_CALLBACK
|
||||
scroll_view_get_window(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -352,6 +393,8 @@ scroll_view_get_window(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK scroll_view_get_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -368,6 +411,8 @@ int CEF_CALLBACK scroll_view_get_id(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK scroll_view_set_id(struct _cef_view_t* self, int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -380,6 +425,8 @@ void CEF_CALLBACK scroll_view_set_id(struct _cef_view_t* self, int id) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK scroll_view_get_group_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -397,6 +444,8 @@ int CEF_CALLBACK scroll_view_get_group_id(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK scroll_view_set_group_id(struct _cef_view_t* self,
|
||||
int group_id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -410,6 +459,8 @@ void CEF_CALLBACK scroll_view_set_group_id(struct _cef_view_t* self,
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
scroll_view_get_parent_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -427,6 +478,8 @@ scroll_view_get_parent_view(struct _cef_view_t* self) {
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
scroll_view_get_view_for_id(struct _cef_view_t* self, int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -444,6 +497,8 @@ scroll_view_get_view_for_id(struct _cef_view_t* self, int id) {
|
||||
|
||||
void CEF_CALLBACK scroll_view_set_bounds(struct _cef_view_t* self,
|
||||
const cef_rect_t* bounds) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -463,6 +518,8 @@ void CEF_CALLBACK scroll_view_set_bounds(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_rect_t CEF_CALLBACK scroll_view_get_bounds(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -480,6 +537,8 @@ cef_rect_t CEF_CALLBACK scroll_view_get_bounds(struct _cef_view_t* self) {
|
||||
|
||||
cef_rect_t CEF_CALLBACK
|
||||
scroll_view_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -497,6 +556,8 @@ scroll_view_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK scroll_view_set_size(struct _cef_view_t* self,
|
||||
const cef_size_t* size) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -516,6 +577,8 @@ void CEF_CALLBACK scroll_view_set_size(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK scroll_view_get_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -533,6 +596,8 @@ cef_size_t CEF_CALLBACK scroll_view_get_size(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK scroll_view_set_position(struct _cef_view_t* self,
|
||||
const cef_point_t* position) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -552,6 +617,8 @@ void CEF_CALLBACK scroll_view_set_position(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_point_t CEF_CALLBACK scroll_view_get_position(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -569,6 +636,8 @@ cef_point_t CEF_CALLBACK scroll_view_get_position(struct _cef_view_t* self) {
|
||||
|
||||
cef_size_t CEF_CALLBACK
|
||||
scroll_view_get_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -585,6 +654,8 @@ scroll_view_get_preferred_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK scroll_view_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -597,6 +668,8 @@ void CEF_CALLBACK scroll_view_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK scroll_view_get_minimum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -613,6 +686,8 @@ cef_size_t CEF_CALLBACK scroll_view_get_minimum_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK scroll_view_get_maximum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -630,6 +705,8 @@ cef_size_t CEF_CALLBACK scroll_view_get_maximum_size(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK scroll_view_get_height_for_width(struct _cef_view_t* self,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -646,6 +723,8 @@ int CEF_CALLBACK scroll_view_get_height_for_width(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK scroll_view_invalidate_layout(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -659,6 +738,8 @@ void CEF_CALLBACK scroll_view_invalidate_layout(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK scroll_view_set_visible(struct _cef_view_t* self,
|
||||
int visible) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -671,6 +752,8 @@ void CEF_CALLBACK scroll_view_set_visible(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK scroll_view_is_visible(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -687,6 +770,8 @@ int CEF_CALLBACK scroll_view_is_visible(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK scroll_view_is_drawn(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -704,6 +789,8 @@ int CEF_CALLBACK scroll_view_is_drawn(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK scroll_view_set_enabled(struct _cef_view_t* self,
|
||||
int enabled) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -716,6 +803,8 @@ void CEF_CALLBACK scroll_view_set_enabled(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK scroll_view_is_enabled(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -733,6 +822,8 @@ int CEF_CALLBACK scroll_view_is_enabled(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK scroll_view_set_focusable(struct _cef_view_t* self,
|
||||
int focusable) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -745,6 +836,8 @@ void CEF_CALLBACK scroll_view_set_focusable(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK scroll_view_is_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -762,6 +855,8 @@ int CEF_CALLBACK scroll_view_is_focusable(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK
|
||||
scroll_view_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -778,6 +873,8 @@ scroll_view_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK scroll_view_request_focus(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -791,6 +888,8 @@ void CEF_CALLBACK scroll_view_request_focus(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK scroll_view_set_background_color(struct _cef_view_t* self,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -804,6 +903,8 @@ void CEF_CALLBACK scroll_view_set_background_color(struct _cef_view_t* self,
|
||||
|
||||
cef_color_t CEF_CALLBACK
|
||||
scroll_view_get_background_color(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -821,6 +922,8 @@ scroll_view_get_background_color(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK scroll_view_convert_point_to_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -849,6 +952,8 @@ int CEF_CALLBACK scroll_view_convert_point_to_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK scroll_view_convert_point_from_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -877,6 +982,8 @@ int CEF_CALLBACK scroll_view_convert_point_from_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK scroll_view_convert_point_to_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -905,6 +1012,8 @@ int CEF_CALLBACK scroll_view_convert_point_to_window(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK scroll_view_convert_point_from_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -934,6 +1043,8 @@ int CEF_CALLBACK scroll_view_convert_point_from_window(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK scroll_view_convert_point_to_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -967,6 +1078,8 @@ int CEF_CALLBACK scroll_view_convert_point_to_view(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK scroll_view_convert_point_from_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1067,6 +1180,12 @@ CefScrollViewCppToC::CefScrollViewCppToC() {
|
||||
scroll_view_convert_point_from_view;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefScrollViewCppToC::~CefScrollViewCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefScrollView>
|
||||
CefCppToCRefCounted<CefScrollViewCppToC, CefScrollView, cef_scroll_view_t>::
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=4e2063730c3607673b332251c47593bd42cff29e$
|
||||
// $hash=6a38bf30fbbe1de396314d51b794d7286e4d2847$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_SCROLL_VIEW_CPPTOC_H_
|
||||
@@ -31,6 +31,7 @@ class CefScrollViewCppToC : public CefCppToCRefCounted<CefScrollViewCppToC,
|
||||
cef_scroll_view_t> {
|
||||
public:
|
||||
CefScrollViewCppToC();
|
||||
virtual ~CefScrollViewCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_SCROLL_VIEW_CPPTOC_H_
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=22646f79cfb1cb3ecfdb36df6110c3942363da48$
|
||||
// $hash=2be3b25e13c832868534bcebfad46e357abc4b91$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/textfield_cpptoc.h"
|
||||
@@ -21,11 +21,14 @@
|
||||
#include "libcef_dll/cpptoc/views/window_cpptoc.h"
|
||||
#include "libcef_dll/ctocpp/views/textfield_delegate_ctocpp.h"
|
||||
#include "libcef_dll/ctocpp/views/view_delegate_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
// GLOBAL FUNCTIONS - Body may be edited by hand.
|
||||
|
||||
CEF_EXPORT cef_textfield_t* cef_textfield_create(
|
||||
cef_textfield_delegate_t* delegate) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Unverified params: delegate
|
||||
@@ -44,6 +47,8 @@ namespace {
|
||||
|
||||
void CEF_CALLBACK textfield_set_password_input(struct _cef_textfield_t* self,
|
||||
int password_input) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -56,6 +61,8 @@ void CEF_CALLBACK textfield_set_password_input(struct _cef_textfield_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK textfield_is_password_input(struct _cef_textfield_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -71,6 +78,8 @@ int CEF_CALLBACK textfield_is_password_input(struct _cef_textfield_t* self) {
|
||||
|
||||
void CEF_CALLBACK textfield_set_read_only(struct _cef_textfield_t* self,
|
||||
int read_only) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -82,6 +91,8 @@ void CEF_CALLBACK textfield_set_read_only(struct _cef_textfield_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK textfield_is_read_only(struct _cef_textfield_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -97,6 +108,8 @@ int CEF_CALLBACK textfield_is_read_only(struct _cef_textfield_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
textfield_get_text(struct _cef_textfield_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -112,6 +125,8 @@ textfield_get_text(struct _cef_textfield_t* self) {
|
||||
|
||||
void CEF_CALLBACK textfield_set_text(struct _cef_textfield_t* self,
|
||||
const cef_string_t* text) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -128,6 +143,8 @@ void CEF_CALLBACK textfield_set_text(struct _cef_textfield_t* self,
|
||||
|
||||
void CEF_CALLBACK textfield_append_text(struct _cef_textfield_t* self,
|
||||
const cef_string_t* text) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -145,6 +162,8 @@ void CEF_CALLBACK textfield_append_text(struct _cef_textfield_t* self,
|
||||
void CEF_CALLBACK
|
||||
textfield_insert_or_replace_text(struct _cef_textfield_t* self,
|
||||
const cef_string_t* text) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -160,6 +179,8 @@ textfield_insert_or_replace_text(struct _cef_textfield_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK textfield_has_selection(struct _cef_textfield_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -175,6 +196,8 @@ int CEF_CALLBACK textfield_has_selection(struct _cef_textfield_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
textfield_get_selected_text(struct _cef_textfield_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -190,6 +213,8 @@ textfield_get_selected_text(struct _cef_textfield_t* self) {
|
||||
|
||||
void CEF_CALLBACK textfield_select_all(struct _cef_textfield_t* self,
|
||||
int reversed) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -201,6 +226,8 @@ void CEF_CALLBACK textfield_select_all(struct _cef_textfield_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK textfield_clear_selection(struct _cef_textfield_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -213,6 +240,8 @@ void CEF_CALLBACK textfield_clear_selection(struct _cef_textfield_t* self) {
|
||||
|
||||
cef_range_t CEF_CALLBACK
|
||||
textfield_get_selected_range(struct _cef_textfield_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -228,6 +257,8 @@ textfield_get_selected_range(struct _cef_textfield_t* self) {
|
||||
|
||||
void CEF_CALLBACK textfield_select_range(struct _cef_textfield_t* self,
|
||||
const cef_range_t* range) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -247,6 +278,8 @@ void CEF_CALLBACK textfield_select_range(struct _cef_textfield_t* self,
|
||||
|
||||
size_t CEF_CALLBACK
|
||||
textfield_get_cursor_position(struct _cef_textfield_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -262,6 +295,8 @@ textfield_get_cursor_position(struct _cef_textfield_t* self) {
|
||||
|
||||
void CEF_CALLBACK textfield_set_text_color(struct _cef_textfield_t* self,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -274,6 +309,8 @@ void CEF_CALLBACK textfield_set_text_color(struct _cef_textfield_t* self,
|
||||
|
||||
cef_color_t CEF_CALLBACK
|
||||
textfield_get_text_color(struct _cef_textfield_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -290,6 +327,8 @@ textfield_get_text_color(struct _cef_textfield_t* self) {
|
||||
void CEF_CALLBACK
|
||||
textfield_set_selection_text_color(struct _cef_textfield_t* self,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -302,6 +341,8 @@ textfield_set_selection_text_color(struct _cef_textfield_t* self,
|
||||
|
||||
cef_color_t CEF_CALLBACK
|
||||
textfield_get_selection_text_color(struct _cef_textfield_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -318,6 +359,8 @@ textfield_get_selection_text_color(struct _cef_textfield_t* self) {
|
||||
void CEF_CALLBACK
|
||||
textfield_set_selection_background_color(struct _cef_textfield_t* self,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -330,6 +373,8 @@ textfield_set_selection_background_color(struct _cef_textfield_t* self,
|
||||
|
||||
cef_color_t CEF_CALLBACK
|
||||
textfield_get_selection_background_color(struct _cef_textfield_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -346,6 +391,8 @@ textfield_get_selection_background_color(struct _cef_textfield_t* self) {
|
||||
|
||||
void CEF_CALLBACK textfield_set_font_list(struct _cef_textfield_t* self,
|
||||
const cef_string_t* font_list) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -363,6 +410,8 @@ void CEF_CALLBACK textfield_set_font_list(struct _cef_textfield_t* self,
|
||||
void CEF_CALLBACK textfield_apply_text_color(struct _cef_textfield_t* self,
|
||||
cef_color_t color,
|
||||
const cef_range_t* range) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -384,6 +433,8 @@ void CEF_CALLBACK textfield_apply_text_style(struct _cef_textfield_t* self,
|
||||
cef_text_style_t style,
|
||||
int add,
|
||||
const cef_range_t* range) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -404,6 +455,8 @@ void CEF_CALLBACK textfield_apply_text_style(struct _cef_textfield_t* self,
|
||||
|
||||
int CEF_CALLBACK textfield_is_command_enabled(struct _cef_textfield_t* self,
|
||||
int command_id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -419,6 +472,8 @@ int CEF_CALLBACK textfield_is_command_enabled(struct _cef_textfield_t* self,
|
||||
|
||||
void CEF_CALLBACK textfield_execute_command(struct _cef_textfield_t* self,
|
||||
int command_id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -430,6 +485,8 @@ void CEF_CALLBACK textfield_execute_command(struct _cef_textfield_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK textfield_clear_edit_history(struct _cef_textfield_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -442,6 +499,8 @@ void CEF_CALLBACK textfield_clear_edit_history(struct _cef_textfield_t* self) {
|
||||
|
||||
void CEF_CALLBACK textfield_set_placeholder_text(struct _cef_textfield_t* self,
|
||||
const cef_string_t* text) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -458,6 +517,8 @@ void CEF_CALLBACK textfield_set_placeholder_text(struct _cef_textfield_t* self,
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
textfield_get_placeholder_text(struct _cef_textfield_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -474,6 +535,8 @@ textfield_get_placeholder_text(struct _cef_textfield_t* self) {
|
||||
void CEF_CALLBACK
|
||||
textfield_set_placeholder_text_color(struct _cef_textfield_t* self,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -486,6 +549,8 @@ textfield_set_placeholder_text_color(struct _cef_textfield_t* self,
|
||||
|
||||
void CEF_CALLBACK textfield_set_accessible_name(struct _cef_textfield_t* self,
|
||||
const cef_string_t* name) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -502,6 +567,8 @@ void CEF_CALLBACK textfield_set_accessible_name(struct _cef_textfield_t* self,
|
||||
|
||||
cef_browser_view_t* CEF_CALLBACK
|
||||
textfield_as_browser_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -518,6 +585,8 @@ textfield_as_browser_view(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_button_t* CEF_CALLBACK textfield_as_button(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -534,6 +603,8 @@ cef_button_t* CEF_CALLBACK textfield_as_button(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_panel_t* CEF_CALLBACK textfield_as_panel(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -551,6 +622,8 @@ cef_panel_t* CEF_CALLBACK textfield_as_panel(struct _cef_view_t* self) {
|
||||
|
||||
cef_scroll_view_t* CEF_CALLBACK
|
||||
textfield_as_scroll_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -567,6 +640,8 @@ textfield_as_scroll_view(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_textfield_t* CEF_CALLBACK textfield_as_textfield(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -584,6 +659,8 @@ cef_textfield_t* CEF_CALLBACK textfield_as_textfield(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
textfield_get_type_string(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -601,6 +678,8 @@ textfield_get_type_string(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK textfield_to_string(struct _cef_view_t* self,
|
||||
int include_children) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -617,6 +696,8 @@ cef_string_userfree_t CEF_CALLBACK textfield_to_string(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK textfield_is_valid(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -633,6 +714,8 @@ int CEF_CALLBACK textfield_is_valid(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK textfield_is_attached(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -650,6 +733,8 @@ int CEF_CALLBACK textfield_is_attached(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK textfield_is_same(struct _cef_view_t* self,
|
||||
struct _cef_view_t* that) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -671,6 +756,8 @@ int CEF_CALLBACK textfield_is_same(struct _cef_view_t* self,
|
||||
|
||||
struct _cef_view_delegate_t* CEF_CALLBACK
|
||||
textfield_get_delegate(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -688,6 +775,8 @@ textfield_get_delegate(struct _cef_view_t* self) {
|
||||
|
||||
struct _cef_window_t* CEF_CALLBACK
|
||||
textfield_get_window(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -704,6 +793,8 @@ textfield_get_window(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK textfield_get_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -720,6 +811,8 @@ int CEF_CALLBACK textfield_get_id(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK textfield_set_id(struct _cef_view_t* self, int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -731,6 +824,8 @@ void CEF_CALLBACK textfield_set_id(struct _cef_view_t* self, int id) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK textfield_get_group_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -748,6 +843,8 @@ int CEF_CALLBACK textfield_get_group_id(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK textfield_set_group_id(struct _cef_view_t* self,
|
||||
int group_id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -761,6 +858,8 @@ void CEF_CALLBACK textfield_set_group_id(struct _cef_view_t* self,
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
textfield_get_parent_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -778,6 +877,8 @@ textfield_get_parent_view(struct _cef_view_t* self) {
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
textfield_get_view_for_id(struct _cef_view_t* self, int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -795,6 +896,8 @@ textfield_get_view_for_id(struct _cef_view_t* self, int id) {
|
||||
|
||||
void CEF_CALLBACK textfield_set_bounds(struct _cef_view_t* self,
|
||||
const cef_rect_t* bounds) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -814,6 +917,8 @@ void CEF_CALLBACK textfield_set_bounds(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_rect_t CEF_CALLBACK textfield_get_bounds(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -831,6 +936,8 @@ cef_rect_t CEF_CALLBACK textfield_get_bounds(struct _cef_view_t* self) {
|
||||
|
||||
cef_rect_t CEF_CALLBACK
|
||||
textfield_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -848,6 +955,8 @@ textfield_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK textfield_set_size(struct _cef_view_t* self,
|
||||
const cef_size_t* size) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -867,6 +976,8 @@ void CEF_CALLBACK textfield_set_size(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK textfield_get_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -884,6 +995,8 @@ cef_size_t CEF_CALLBACK textfield_get_size(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK textfield_set_position(struct _cef_view_t* self,
|
||||
const cef_point_t* position) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -903,6 +1016,8 @@ void CEF_CALLBACK textfield_set_position(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_point_t CEF_CALLBACK textfield_get_position(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -919,6 +1034,8 @@ cef_point_t CEF_CALLBACK textfield_get_position(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK textfield_get_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -935,6 +1052,8 @@ cef_size_t CEF_CALLBACK textfield_get_preferred_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK textfield_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -947,6 +1066,8 @@ void CEF_CALLBACK textfield_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK textfield_get_minimum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -963,6 +1084,8 @@ cef_size_t CEF_CALLBACK textfield_get_minimum_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK textfield_get_maximum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -980,6 +1103,8 @@ cef_size_t CEF_CALLBACK textfield_get_maximum_size(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK textfield_get_height_for_width(struct _cef_view_t* self,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -996,6 +1121,8 @@ int CEF_CALLBACK textfield_get_height_for_width(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK textfield_invalidate_layout(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1008,6 +1135,8 @@ void CEF_CALLBACK textfield_invalidate_layout(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK textfield_set_visible(struct _cef_view_t* self, int visible) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1020,6 +1149,8 @@ void CEF_CALLBACK textfield_set_visible(struct _cef_view_t* self, int visible) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK textfield_is_visible(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1036,6 +1167,8 @@ int CEF_CALLBACK textfield_is_visible(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK textfield_is_drawn(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1052,6 +1185,8 @@ int CEF_CALLBACK textfield_is_drawn(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK textfield_set_enabled(struct _cef_view_t* self, int enabled) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1064,6 +1199,8 @@ void CEF_CALLBACK textfield_set_enabled(struct _cef_view_t* self, int enabled) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK textfield_is_enabled(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1081,6 +1218,8 @@ int CEF_CALLBACK textfield_is_enabled(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK textfield_set_focusable(struct _cef_view_t* self,
|
||||
int focusable) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1093,6 +1232,8 @@ void CEF_CALLBACK textfield_set_focusable(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK textfield_is_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1110,6 +1251,8 @@ int CEF_CALLBACK textfield_is_focusable(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK
|
||||
textfield_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1126,6 +1269,8 @@ textfield_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK textfield_request_focus(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1139,6 +1284,8 @@ void CEF_CALLBACK textfield_request_focus(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK textfield_set_background_color(struct _cef_view_t* self,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1152,6 +1299,8 @@ void CEF_CALLBACK textfield_set_background_color(struct _cef_view_t* self,
|
||||
|
||||
cef_color_t CEF_CALLBACK
|
||||
textfield_get_background_color(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1169,6 +1318,8 @@ textfield_get_background_color(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK textfield_convert_point_to_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1197,6 +1348,8 @@ int CEF_CALLBACK textfield_convert_point_to_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK textfield_convert_point_from_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1225,6 +1378,8 @@ int CEF_CALLBACK textfield_convert_point_from_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK textfield_convert_point_to_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1253,6 +1408,8 @@ int CEF_CALLBACK textfield_convert_point_to_window(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK textfield_convert_point_from_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1282,6 +1439,8 @@ int CEF_CALLBACK textfield_convert_point_from_window(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK textfield_convert_point_to_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1315,6 +1474,8 @@ int CEF_CALLBACK textfield_convert_point_to_view(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK textfield_convert_point_from_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1437,6 +1598,12 @@ CefTextfieldCppToC::CefTextfieldCppToC() {
|
||||
GetStruct()->base.convert_point_from_view = textfield_convert_point_from_view;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefTextfieldCppToC::~CefTextfieldCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefTextfield>
|
||||
CefCppToCRefCounted<CefTextfieldCppToC, CefTextfield, cef_textfield_t>::
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=827f412320d7025eccd1aa0da102e07bf133b32c$
|
||||
// $hash=25ab9f78144a59d194393649435040a62aa9f85c$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_TEXTFIELD_CPPTOC_H_
|
||||
@@ -31,6 +31,7 @@ class CefTextfieldCppToC : public CefCppToCRefCounted<CefTextfieldCppToC,
|
||||
cef_textfield_t> {
|
||||
public:
|
||||
CefTextfieldCppToC();
|
||||
virtual ~CefTextfieldCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_TEXTFIELD_CPPTOC_H_
|
||||
|
@@ -9,12 +9,13 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=ce1d1ccd00d0dd6e9317ffc0d79b058ba591c459$
|
||||
// $hash=69781413cbe8d2488fa16f5524efebb16f5700ab$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/textfield_delegate_cpptoc.h"
|
||||
#include "libcef_dll/ctocpp/views/textfield_ctocpp.h"
|
||||
#include "libcef_dll/ctocpp/views/view_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
namespace {
|
||||
|
||||
@@ -24,6 +25,8 @@ int CEF_CALLBACK
|
||||
textfield_delegate_on_key_event(struct _cef_textfield_delegate_t* self,
|
||||
cef_textfield_t* textfield,
|
||||
const struct _cef_key_event_t* event) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -54,6 +57,8 @@ textfield_delegate_on_key_event(struct _cef_textfield_delegate_t* self,
|
||||
void CEF_CALLBACK
|
||||
textfield_delegate_on_after_user_action(struct _cef_textfield_delegate_t* self,
|
||||
cef_textfield_t* textfield) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -72,6 +77,8 @@ textfield_delegate_on_after_user_action(struct _cef_textfield_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
textfield_delegate_get_preferred_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -94,6 +101,8 @@ textfield_delegate_get_preferred_size(struct _cef_view_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
textfield_delegate_get_minimum_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -116,6 +125,8 @@ textfield_delegate_get_minimum_size(struct _cef_view_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
textfield_delegate_get_maximum_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -139,6 +150,8 @@ int CEF_CALLBACK
|
||||
textfield_delegate_get_height_for_width(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -163,6 +176,8 @@ textfield_delegate_on_parent_view_changed(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int added,
|
||||
cef_view_t* parent) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -189,6 +204,8 @@ textfield_delegate_on_child_view_changed(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int added,
|
||||
cef_view_t* child) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -212,6 +229,8 @@ textfield_delegate_on_child_view_changed(struct _cef_view_delegate_t* self,
|
||||
|
||||
void CEF_CALLBACK textfield_delegate_on_focus(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -230,6 +249,8 @@ void CEF_CALLBACK textfield_delegate_on_focus(struct _cef_view_delegate_t* self,
|
||||
|
||||
void CEF_CALLBACK textfield_delegate_on_blur(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -266,6 +287,12 @@ CefTextfieldDelegateCppToC::CefTextfieldDelegateCppToC() {
|
||||
GetStruct()->base.on_blur = textfield_delegate_on_blur;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefTextfieldDelegateCppToC::~CefTextfieldDelegateCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefTextfieldDelegate> CefCppToCRefCounted<
|
||||
CefTextfieldDelegateCppToC,
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=bec7ac1f85c4bef867e477b6dad64792398b1e9f$
|
||||
// $hash=e2f3df2338b4d4d20dd1eee34b04ec041e02db0f$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_TEXTFIELD_DELEGATE_CPPTOC_H_
|
||||
@@ -34,6 +34,7 @@ class CefTextfieldDelegateCppToC
|
||||
cef_textfield_delegate_t> {
|
||||
public:
|
||||
CefTextfieldDelegateCppToC();
|
||||
virtual ~CefTextfieldDelegateCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_TEXTFIELD_DELEGATE_CPPTOC_H_
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=a2d18e5341ca5503ec85c7033c4b5af54d63b8d2$
|
||||
// $hash=e347077560047ca31c041ee038be80f73ba47c88$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/view_cpptoc.h"
|
||||
@@ -22,6 +22,7 @@
|
||||
#include "libcef_dll/cpptoc/views/textfield_cpptoc.h"
|
||||
#include "libcef_dll/cpptoc/views/window_cpptoc.h"
|
||||
#include "libcef_dll/ctocpp/views/view_delegate_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
namespace {
|
||||
|
||||
@@ -29,6 +30,8 @@ namespace {
|
||||
|
||||
cef_browser_view_t* CEF_CALLBACK
|
||||
view_as_browser_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -43,6 +46,8 @@ view_as_browser_view(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_button_t* CEF_CALLBACK view_as_button(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -57,6 +62,8 @@ cef_button_t* CEF_CALLBACK view_as_button(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_panel_t* CEF_CALLBACK view_as_panel(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -71,6 +78,8 @@ cef_panel_t* CEF_CALLBACK view_as_panel(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_scroll_view_t* CEF_CALLBACK view_as_scroll_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -85,6 +94,8 @@ cef_scroll_view_t* CEF_CALLBACK view_as_scroll_view(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_textfield_t* CEF_CALLBACK view_as_textfield(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -100,6 +111,8 @@ cef_textfield_t* CEF_CALLBACK view_as_textfield(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
view_get_type_string(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -115,6 +128,8 @@ view_get_type_string(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK view_to_string(struct _cef_view_t* self,
|
||||
int include_children) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -130,6 +145,8 @@ cef_string_userfree_t CEF_CALLBACK view_to_string(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK view_is_valid(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -144,6 +161,8 @@ int CEF_CALLBACK view_is_valid(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK view_is_attached(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -159,6 +178,8 @@ int CEF_CALLBACK view_is_attached(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK view_is_same(struct _cef_view_t* self,
|
||||
struct _cef_view_t* that) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -178,6 +199,8 @@ int CEF_CALLBACK view_is_same(struct _cef_view_t* self,
|
||||
|
||||
struct _cef_view_delegate_t* CEF_CALLBACK
|
||||
view_get_delegate(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -192,6 +215,8 @@ view_get_delegate(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
struct _cef_window_t* CEF_CALLBACK view_get_window(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -206,6 +231,8 @@ struct _cef_window_t* CEF_CALLBACK view_get_window(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK view_get_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -220,6 +247,8 @@ int CEF_CALLBACK view_get_id(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK view_set_id(struct _cef_view_t* self, int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -231,6 +260,8 @@ void CEF_CALLBACK view_set_id(struct _cef_view_t* self, int id) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK view_get_group_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -245,6 +276,8 @@ int CEF_CALLBACK view_get_group_id(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK view_set_group_id(struct _cef_view_t* self, int group_id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -257,6 +290,8 @@ void CEF_CALLBACK view_set_group_id(struct _cef_view_t* self, int group_id) {
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK
|
||||
view_get_parent_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -272,6 +307,8 @@ view_get_parent_view(struct _cef_view_t* self) {
|
||||
|
||||
struct _cef_view_t* CEF_CALLBACK view_get_view_for_id(struct _cef_view_t* self,
|
||||
int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -287,6 +324,8 @@ struct _cef_view_t* CEF_CALLBACK view_get_view_for_id(struct _cef_view_t* self,
|
||||
|
||||
void CEF_CALLBACK view_set_bounds(struct _cef_view_t* self,
|
||||
const cef_rect_t* bounds) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -305,6 +344,8 @@ void CEF_CALLBACK view_set_bounds(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_rect_t CEF_CALLBACK view_get_bounds(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -319,6 +360,8 @@ cef_rect_t CEF_CALLBACK view_get_bounds(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_rect_t CEF_CALLBACK view_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -334,6 +377,8 @@ cef_rect_t CEF_CALLBACK view_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK view_set_size(struct _cef_view_t* self,
|
||||
const cef_size_t* size) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -352,6 +397,8 @@ void CEF_CALLBACK view_set_size(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK view_get_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -367,6 +414,8 @@ cef_size_t CEF_CALLBACK view_get_size(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK view_set_position(struct _cef_view_t* self,
|
||||
const cef_point_t* position) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -385,6 +434,8 @@ void CEF_CALLBACK view_set_position(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_point_t CEF_CALLBACK view_get_position(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -399,6 +450,8 @@ cef_point_t CEF_CALLBACK view_get_position(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK view_get_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -413,6 +466,8 @@ cef_size_t CEF_CALLBACK view_get_preferred_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK view_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -424,6 +479,8 @@ void CEF_CALLBACK view_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK view_get_minimum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -438,6 +495,8 @@ cef_size_t CEF_CALLBACK view_get_minimum_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK view_get_maximum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -453,6 +512,8 @@ cef_size_t CEF_CALLBACK view_get_maximum_size(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK view_get_height_for_width(struct _cef_view_t* self,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -467,6 +528,8 @@ int CEF_CALLBACK view_get_height_for_width(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK view_invalidate_layout(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -478,6 +541,8 @@ void CEF_CALLBACK view_invalidate_layout(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK view_set_visible(struct _cef_view_t* self, int visible) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -489,6 +554,8 @@ void CEF_CALLBACK view_set_visible(struct _cef_view_t* self, int visible) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK view_is_visible(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -503,6 +570,8 @@ int CEF_CALLBACK view_is_visible(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK view_is_drawn(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -517,6 +586,8 @@ int CEF_CALLBACK view_is_drawn(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK view_set_enabled(struct _cef_view_t* self, int enabled) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -528,6 +599,8 @@ void CEF_CALLBACK view_set_enabled(struct _cef_view_t* self, int enabled) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK view_is_enabled(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -542,6 +615,8 @@ int CEF_CALLBACK view_is_enabled(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK view_set_focusable(struct _cef_view_t* self, int focusable) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -553,6 +628,8 @@ void CEF_CALLBACK view_set_focusable(struct _cef_view_t* self, int focusable) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK view_is_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -567,6 +644,8 @@ int CEF_CALLBACK view_is_focusable(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK view_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -581,6 +660,8 @@ int CEF_CALLBACK view_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK view_request_focus(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -593,6 +674,8 @@ void CEF_CALLBACK view_request_focus(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK view_set_background_color(struct _cef_view_t* self,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -604,6 +687,8 @@ void CEF_CALLBACK view_set_background_color(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_color_t CEF_CALLBACK view_get_background_color(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -619,6 +704,8 @@ cef_color_t CEF_CALLBACK view_get_background_color(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK view_convert_point_to_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -645,6 +732,8 @@ int CEF_CALLBACK view_convert_point_to_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK view_convert_point_from_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -671,6 +760,8 @@ int CEF_CALLBACK view_convert_point_from_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK view_convert_point_to_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -697,6 +788,8 @@ int CEF_CALLBACK view_convert_point_to_window(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK view_convert_point_from_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -724,6 +817,8 @@ int CEF_CALLBACK view_convert_point_from_window(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK view_convert_point_to_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -756,6 +851,8 @@ int CEF_CALLBACK view_convert_point_to_view(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK view_convert_point_from_view(struct _cef_view_t* self,
|
||||
struct _cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -840,6 +937,12 @@ CefViewCppToC::CefViewCppToC() {
|
||||
GetStruct()->convert_point_from_view = view_convert_point_from_view;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefViewCppToC::~CefViewCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefView>
|
||||
CefCppToCRefCounted<CefViewCppToC, CefView, cef_view_t>::UnwrapDerived(
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=037aabb926a8eb87cd8d04684abe7254f97f8f56$
|
||||
// $hash=76483d9a6336d588f8ff1014ced9702765c25564$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_VIEW_CPPTOC_H_
|
||||
@@ -42,6 +42,7 @@ class CefViewCppToC
|
||||
: public CefCppToCRefCounted<CefViewCppToC, CefView, cef_view_t> {
|
||||
public:
|
||||
CefViewCppToC();
|
||||
virtual ~CefViewCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_VIEW_CPPTOC_H_
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=a7b25677f607a759a1c350b0dcc820d80ca3620f$
|
||||
// $hash=c5635ee1a7e661b2b3fedf63d3a7d777ff378228$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/view_delegate_cpptoc.h"
|
||||
@@ -20,6 +20,7 @@
|
||||
#include "libcef_dll/cpptoc/views/textfield_delegate_cpptoc.h"
|
||||
#include "libcef_dll/cpptoc/views/window_delegate_cpptoc.h"
|
||||
#include "libcef_dll/ctocpp/views/view_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
namespace {
|
||||
|
||||
@@ -28,6 +29,8 @@ namespace {
|
||||
cef_size_t CEF_CALLBACK
|
||||
view_delegate_get_preferred_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -49,6 +52,8 @@ view_delegate_get_preferred_size(struct _cef_view_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
view_delegate_get_minimum_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -70,6 +75,8 @@ view_delegate_get_minimum_size(struct _cef_view_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
view_delegate_get_maximum_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -92,6 +99,8 @@ int CEF_CALLBACK
|
||||
view_delegate_get_height_for_width(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -115,6 +124,8 @@ view_delegate_on_parent_view_changed(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int added,
|
||||
cef_view_t* parent) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -140,6 +151,8 @@ view_delegate_on_child_view_changed(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int added,
|
||||
cef_view_t* child) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -162,6 +175,8 @@ view_delegate_on_child_view_changed(struct _cef_view_delegate_t* self,
|
||||
|
||||
void CEF_CALLBACK view_delegate_on_focus(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -178,6 +193,8 @@ void CEF_CALLBACK view_delegate_on_focus(struct _cef_view_delegate_t* self,
|
||||
|
||||
void CEF_CALLBACK view_delegate_on_blur(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -207,6 +224,12 @@ CefViewDelegateCppToC::CefViewDelegateCppToC() {
|
||||
GetStruct()->on_blur = view_delegate_on_blur;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefViewDelegateCppToC::~CefViewDelegateCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefViewDelegate> CefCppToCRefCounted<
|
||||
CefViewDelegateCppToC,
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=9e47bcfce811c645242bd8b0f6d53da611af812a$
|
||||
// $hash=1078d5e35099d704786121348fc29177779d90b6$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_VIEW_DELEGATE_CPPTOC_H_
|
||||
@@ -33,6 +33,7 @@ class CefViewDelegateCppToC : public CefCppToCRefCounted<CefViewDelegateCppToC,
|
||||
cef_view_delegate_t> {
|
||||
public:
|
||||
CefViewDelegateCppToC();
|
||||
virtual ~CefViewDelegateCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_VIEW_DELEGATE_CPPTOC_H_
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=e7030d27d0fbf831eda895ee265373ad47cf7cc7$
|
||||
// $hash=3a89cd3f08de55473dcc11d60add91c6005282ca$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/window_cpptoc.h"
|
||||
@@ -27,11 +27,14 @@
|
||||
#include "libcef_dll/cpptoc/views/view_cpptoc.h"
|
||||
#include "libcef_dll/ctocpp/views/view_delegate_ctocpp.h"
|
||||
#include "libcef_dll/ctocpp/views/window_delegate_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
// GLOBAL FUNCTIONS - Body may be edited by hand.
|
||||
|
||||
CEF_EXPORT cef_window_t* cef_window_create_top_level(
|
||||
struct _cef_window_delegate_t* delegate) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Unverified params: delegate
|
||||
@@ -49,6 +52,8 @@ namespace {
|
||||
// MEMBER FUNCTIONS - Body may be edited by hand.
|
||||
|
||||
void CEF_CALLBACK window_show(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -60,6 +65,8 @@ void CEF_CALLBACK window_show(struct _cef_window_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_hide(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -72,6 +79,8 @@ void CEF_CALLBACK window_hide(struct _cef_window_t* self) {
|
||||
|
||||
void CEF_CALLBACK window_center_window(struct _cef_window_t* self,
|
||||
const cef_size_t* size) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -90,6 +99,8 @@ void CEF_CALLBACK window_center_window(struct _cef_window_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_close(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -101,6 +112,8 @@ void CEF_CALLBACK window_close(struct _cef_window_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_is_closed(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -115,6 +128,8 @@ int CEF_CALLBACK window_is_closed(struct _cef_window_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_activate(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -126,6 +141,8 @@ void CEF_CALLBACK window_activate(struct _cef_window_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_deactivate(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -137,6 +154,8 @@ void CEF_CALLBACK window_deactivate(struct _cef_window_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_is_active(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -151,6 +170,8 @@ int CEF_CALLBACK window_is_active(struct _cef_window_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_bring_to_top(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -163,6 +184,8 @@ void CEF_CALLBACK window_bring_to_top(struct _cef_window_t* self) {
|
||||
|
||||
void CEF_CALLBACK window_set_always_on_top(struct _cef_window_t* self,
|
||||
int on_top) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -174,6 +197,8 @@ void CEF_CALLBACK window_set_always_on_top(struct _cef_window_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_is_always_on_top(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -188,6 +213,8 @@ int CEF_CALLBACK window_is_always_on_top(struct _cef_window_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_maximize(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -199,6 +226,8 @@ void CEF_CALLBACK window_maximize(struct _cef_window_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_minimize(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -210,6 +239,8 @@ void CEF_CALLBACK window_minimize(struct _cef_window_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_restore(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -222,6 +253,8 @@ void CEF_CALLBACK window_restore(struct _cef_window_t* self) {
|
||||
|
||||
void CEF_CALLBACK window_set_fullscreen(struct _cef_window_t* self,
|
||||
int fullscreen) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -233,6 +266,8 @@ void CEF_CALLBACK window_set_fullscreen(struct _cef_window_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_is_maximized(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -247,6 +282,8 @@ int CEF_CALLBACK window_is_maximized(struct _cef_window_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_is_minimized(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -261,6 +298,8 @@ int CEF_CALLBACK window_is_minimized(struct _cef_window_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_is_fullscreen(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -276,6 +315,8 @@ int CEF_CALLBACK window_is_fullscreen(struct _cef_window_t* self) {
|
||||
|
||||
void CEF_CALLBACK window_set_title(struct _cef_window_t* self,
|
||||
const cef_string_t* title) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -289,6 +330,8 @@ void CEF_CALLBACK window_set_title(struct _cef_window_t* self,
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
window_get_title(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -304,6 +347,8 @@ window_get_title(struct _cef_window_t* self) {
|
||||
|
||||
void CEF_CALLBACK window_set_window_icon(struct _cef_window_t* self,
|
||||
cef_image_t* image) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -319,6 +364,8 @@ void CEF_CALLBACK window_set_window_icon(struct _cef_window_t* self,
|
||||
}
|
||||
|
||||
cef_image_t* CEF_CALLBACK window_get_window_icon(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -334,6 +381,8 @@ cef_image_t* CEF_CALLBACK window_get_window_icon(struct _cef_window_t* self) {
|
||||
|
||||
void CEF_CALLBACK window_set_window_app_icon(struct _cef_window_t* self,
|
||||
cef_image_t* image) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -350,6 +399,8 @@ void CEF_CALLBACK window_set_window_app_icon(struct _cef_window_t* self,
|
||||
|
||||
cef_image_t* CEF_CALLBACK
|
||||
window_get_window_app_icon(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -367,6 +418,8 @@ void CEF_CALLBACK window_show_menu(struct _cef_window_t* self,
|
||||
cef_menu_model_t* menu_model,
|
||||
const cef_point_t* screen_point,
|
||||
cef_menu_anchor_position_t anchor_position) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -390,6 +443,8 @@ void CEF_CALLBACK window_show_menu(struct _cef_window_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_cancel_menu(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -401,6 +456,8 @@ void CEF_CALLBACK window_cancel_menu(struct _cef_window_t* self) {
|
||||
}
|
||||
|
||||
cef_display_t* CEF_CALLBACK window_get_display(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -416,6 +473,8 @@ cef_display_t* CEF_CALLBACK window_get_display(struct _cef_window_t* self) {
|
||||
|
||||
cef_rect_t CEF_CALLBACK
|
||||
window_get_client_area_bounds_in_screen(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -434,6 +493,8 @@ void CEF_CALLBACK
|
||||
window_set_draggable_regions(struct _cef_window_t* self,
|
||||
size_t regionsCount,
|
||||
cef_draggable_region_t const* regions) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -456,6 +517,8 @@ window_set_draggable_regions(struct _cef_window_t* self,
|
||||
|
||||
cef_window_handle_t CEF_CALLBACK
|
||||
window_get_window_handle(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -472,6 +535,8 @@ window_get_window_handle(struct _cef_window_t* self) {
|
||||
void CEF_CALLBACK window_send_key_press(struct _cef_window_t* self,
|
||||
int key_code,
|
||||
uint32 event_flags) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -485,6 +550,8 @@ void CEF_CALLBACK window_send_key_press(struct _cef_window_t* self,
|
||||
void CEF_CALLBACK window_send_mouse_move(struct _cef_window_t* self,
|
||||
int screen_x,
|
||||
int screen_y) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -499,6 +566,8 @@ void CEF_CALLBACK window_send_mouse_events(struct _cef_window_t* self,
|
||||
cef_mouse_button_type_t button,
|
||||
int mouse_down,
|
||||
int mouse_up) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -516,6 +585,8 @@ void CEF_CALLBACK window_set_accelerator(struct _cef_window_t* self,
|
||||
int shift_pressed,
|
||||
int ctrl_pressed,
|
||||
int alt_pressed) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -530,6 +601,8 @@ void CEF_CALLBACK window_set_accelerator(struct _cef_window_t* self,
|
||||
|
||||
void CEF_CALLBACK window_remove_accelerator(struct _cef_window_t* self,
|
||||
int command_id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -541,6 +614,8 @@ void CEF_CALLBACK window_remove_accelerator(struct _cef_window_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_remove_all_accelerators(struct _cef_window_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -552,6 +627,8 @@ void CEF_CALLBACK window_remove_all_accelerators(struct _cef_window_t* self) {
|
||||
}
|
||||
|
||||
struct _cef_window_t* CEF_CALLBACK window_as_window(struct _cef_panel_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -568,6 +645,8 @@ struct _cef_window_t* CEF_CALLBACK window_as_window(struct _cef_panel_t* self) {
|
||||
|
||||
cef_fill_layout_t* CEF_CALLBACK
|
||||
window_set_to_fill_layout(struct _cef_panel_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -586,6 +665,8 @@ window_set_to_fill_layout(struct _cef_panel_t* self) {
|
||||
cef_box_layout_t* CEF_CALLBACK
|
||||
window_set_to_box_layout(struct _cef_panel_t* self,
|
||||
const struct _cef_box_layout_settings_t* settings) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -611,6 +692,8 @@ window_set_to_box_layout(struct _cef_panel_t* self,
|
||||
}
|
||||
|
||||
cef_layout_t* CEF_CALLBACK window_get_layout(struct _cef_panel_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -626,6 +709,8 @@ cef_layout_t* CEF_CALLBACK window_get_layout(struct _cef_panel_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_layout(struct _cef_panel_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -638,6 +723,8 @@ void CEF_CALLBACK window_layout(struct _cef_panel_t* self) {
|
||||
|
||||
void CEF_CALLBACK window_add_child_view(struct _cef_panel_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -656,6 +743,8 @@ void CEF_CALLBACK window_add_child_view(struct _cef_panel_t* self,
|
||||
void CEF_CALLBACK window_add_child_view_at(struct _cef_panel_t* self,
|
||||
cef_view_t* view,
|
||||
int index) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -678,6 +767,8 @@ void CEF_CALLBACK window_add_child_view_at(struct _cef_panel_t* self,
|
||||
void CEF_CALLBACK window_reorder_child_view(struct _cef_panel_t* self,
|
||||
cef_view_t* view,
|
||||
int index) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -695,6 +786,8 @@ void CEF_CALLBACK window_reorder_child_view(struct _cef_panel_t* self,
|
||||
|
||||
void CEF_CALLBACK window_remove_child_view(struct _cef_panel_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -711,6 +804,8 @@ void CEF_CALLBACK window_remove_child_view(struct _cef_panel_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_remove_all_child_views(struct _cef_panel_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -723,6 +818,8 @@ void CEF_CALLBACK window_remove_all_child_views(struct _cef_panel_t* self) {
|
||||
}
|
||||
|
||||
size_t CEF_CALLBACK window_get_child_view_count(struct _cef_panel_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -739,6 +836,8 @@ size_t CEF_CALLBACK window_get_child_view_count(struct _cef_panel_t* self) {
|
||||
|
||||
cef_view_t* CEF_CALLBACK window_get_child_view_at(struct _cef_panel_t* self,
|
||||
int index) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -760,6 +859,8 @@ cef_view_t* CEF_CALLBACK window_get_child_view_at(struct _cef_panel_t* self,
|
||||
|
||||
cef_browser_view_t* CEF_CALLBACK
|
||||
window_as_browser_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -776,6 +877,8 @@ window_as_browser_view(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_button_t* CEF_CALLBACK window_as_button(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -791,6 +894,8 @@ cef_button_t* CEF_CALLBACK window_as_button(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_panel_t* CEF_CALLBACK window_as_panel(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -807,6 +912,8 @@ cef_panel_t* CEF_CALLBACK window_as_panel(struct _cef_view_t* self) {
|
||||
|
||||
cef_scroll_view_t* CEF_CALLBACK
|
||||
window_as_scroll_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -823,6 +930,8 @@ window_as_scroll_view(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_textfield_t* CEF_CALLBACK window_as_textfield(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -840,6 +949,8 @@ cef_textfield_t* CEF_CALLBACK window_as_textfield(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK
|
||||
window_get_type_string(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -857,6 +968,8 @@ window_get_type_string(struct _cef_view_t* self) {
|
||||
|
||||
cef_string_userfree_t CEF_CALLBACK window_to_string(struct _cef_view_t* self,
|
||||
int include_children) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -873,6 +986,8 @@ cef_string_userfree_t CEF_CALLBACK window_to_string(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_is_valid(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -888,6 +1003,8 @@ int CEF_CALLBACK window_is_valid(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_is_attached(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -903,6 +1020,8 @@ int CEF_CALLBACK window_is_attached(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_is_same(struct _cef_view_t* self, cef_view_t* that) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -923,6 +1042,8 @@ int CEF_CALLBACK window_is_same(struct _cef_view_t* self, cef_view_t* that) {
|
||||
|
||||
cef_view_delegate_t* CEF_CALLBACK
|
||||
window_get_delegate(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -939,6 +1060,8 @@ window_get_delegate(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
struct _cef_window_t* CEF_CALLBACK window_get_window(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -954,6 +1077,8 @@ struct _cef_window_t* CEF_CALLBACK window_get_window(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_get_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -969,6 +1094,8 @@ int CEF_CALLBACK window_get_id(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_set_id(struct _cef_view_t* self, int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -980,6 +1107,8 @@ void CEF_CALLBACK window_set_id(struct _cef_view_t* self, int id) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_get_group_id(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -995,6 +1124,8 @@ int CEF_CALLBACK window_get_group_id(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_set_group_id(struct _cef_view_t* self, int group_id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1007,6 +1138,8 @@ void CEF_CALLBACK window_set_group_id(struct _cef_view_t* self, int group_id) {
|
||||
}
|
||||
|
||||
cef_view_t* CEF_CALLBACK window_get_parent_view(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1024,6 +1157,8 @@ cef_view_t* CEF_CALLBACK window_get_parent_view(struct _cef_view_t* self) {
|
||||
|
||||
cef_view_t* CEF_CALLBACK window_get_view_for_id(struct _cef_view_t* self,
|
||||
int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1041,6 +1176,8 @@ cef_view_t* CEF_CALLBACK window_get_view_for_id(struct _cef_view_t* self,
|
||||
|
||||
void CEF_CALLBACK window_set_bounds(struct _cef_view_t* self,
|
||||
const cef_rect_t* bounds) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1060,6 +1197,8 @@ void CEF_CALLBACK window_set_bounds(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_rect_t CEF_CALLBACK window_get_bounds(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1075,6 +1214,8 @@ cef_rect_t CEF_CALLBACK window_get_bounds(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_rect_t CEF_CALLBACK window_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1092,6 +1233,8 @@ cef_rect_t CEF_CALLBACK window_get_bounds_in_screen(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK window_set_size(struct _cef_view_t* self,
|
||||
const cef_size_t* size) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1110,6 +1253,8 @@ void CEF_CALLBACK window_set_size(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK window_get_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1126,6 +1271,8 @@ cef_size_t CEF_CALLBACK window_get_size(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK window_set_position(struct _cef_view_t* self,
|
||||
const cef_point_t* position) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1145,6 +1292,8 @@ void CEF_CALLBACK window_set_position(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_point_t CEF_CALLBACK window_get_position(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1161,6 +1310,8 @@ cef_point_t CEF_CALLBACK window_get_position(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK window_get_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1177,6 +1328,8 @@ cef_size_t CEF_CALLBACK window_get_preferred_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1189,6 +1342,8 @@ void CEF_CALLBACK window_size_to_preferred_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK window_get_minimum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1205,6 +1360,8 @@ cef_size_t CEF_CALLBACK window_get_minimum_size(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
cef_size_t CEF_CALLBACK window_get_maximum_size(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1222,6 +1379,8 @@ cef_size_t CEF_CALLBACK window_get_maximum_size(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK window_get_height_for_width(struct _cef_view_t* self,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1237,6 +1396,8 @@ int CEF_CALLBACK window_get_height_for_width(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_invalidate_layout(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1249,6 +1410,8 @@ void CEF_CALLBACK window_invalidate_layout(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_set_visible(struct _cef_view_t* self, int visible) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1261,6 +1424,8 @@ void CEF_CALLBACK window_set_visible(struct _cef_view_t* self, int visible) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_is_visible(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1276,6 +1441,8 @@ int CEF_CALLBACK window_is_visible(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_is_drawn(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1291,6 +1458,8 @@ int CEF_CALLBACK window_is_drawn(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_set_enabled(struct _cef_view_t* self, int enabled) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1303,6 +1472,8 @@ void CEF_CALLBACK window_set_enabled(struct _cef_view_t* self, int enabled) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_is_enabled(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1319,6 +1490,8 @@ int CEF_CALLBACK window_is_enabled(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK window_set_focusable(struct _cef_view_t* self,
|
||||
int focusable) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1331,6 +1504,8 @@ void CEF_CALLBACK window_set_focusable(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_is_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1346,6 +1521,8 @@ int CEF_CALLBACK window_is_focusable(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
int CEF_CALLBACK window_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1361,6 +1538,8 @@ int CEF_CALLBACK window_is_accessibility_focusable(struct _cef_view_t* self) {
|
||||
}
|
||||
|
||||
void CEF_CALLBACK window_request_focus(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1373,6 +1552,8 @@ void CEF_CALLBACK window_request_focus(struct _cef_view_t* self) {
|
||||
|
||||
void CEF_CALLBACK window_set_background_color(struct _cef_view_t* self,
|
||||
cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1385,6 +1566,8 @@ void CEF_CALLBACK window_set_background_color(struct _cef_view_t* self,
|
||||
}
|
||||
|
||||
cef_color_t CEF_CALLBACK window_get_background_color(struct _cef_view_t* self) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1402,6 +1585,8 @@ cef_color_t CEF_CALLBACK window_get_background_color(struct _cef_view_t* self) {
|
||||
|
||||
int CEF_CALLBACK window_convert_point_to_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1429,6 +1614,8 @@ int CEF_CALLBACK window_convert_point_to_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK window_convert_point_from_screen(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1456,6 +1643,8 @@ int CEF_CALLBACK window_convert_point_from_screen(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK window_convert_point_to_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1483,6 +1672,8 @@ int CEF_CALLBACK window_convert_point_to_window(struct _cef_view_t* self,
|
||||
|
||||
int CEF_CALLBACK window_convert_point_from_window(struct _cef_view_t* self,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1511,6 +1702,8 @@ int CEF_CALLBACK window_convert_point_from_window(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK window_convert_point_to_view(struct _cef_view_t* self,
|
||||
cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1544,6 +1737,8 @@ int CEF_CALLBACK window_convert_point_to_view(struct _cef_view_t* self,
|
||||
int CEF_CALLBACK window_convert_point_from_view(struct _cef_view_t* self,
|
||||
cef_view_t* view,
|
||||
cef_point_t* point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -1684,6 +1879,12 @@ CefWindowCppToC::CefWindowCppToC() {
|
||||
window_convert_point_from_view;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefWindowCppToC::~CefWindowCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefWindow>
|
||||
CefCppToCRefCounted<CefWindowCppToC, CefWindow, cef_window_t>::UnwrapDerived(
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=0c35aab62df1016b079f366ca89142dfdcc7c6a4$
|
||||
// $hash=9aa8dae9113f8d6c1e5c4653c964e8acf2808d05$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_WINDOW_CPPTOC_H_
|
||||
@@ -30,6 +30,7 @@ class CefWindowCppToC
|
||||
: public CefCppToCRefCounted<CefWindowCppToC, CefWindow, cef_window_t> {
|
||||
public:
|
||||
CefWindowCppToC();
|
||||
virtual ~CefWindowCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_WINDOW_CPPTOC_H_
|
||||
|
@@ -9,12 +9,13 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=a84d05f2898ac722925601819bd230a4d1126e26$
|
||||
// $hash=8f19f7715fef7895bfb1a18b72fdca41d965a415$
|
||||
//
|
||||
|
||||
#include "libcef_dll/cpptoc/views/window_delegate_cpptoc.h"
|
||||
#include "libcef_dll/ctocpp/views/view_ctocpp.h"
|
||||
#include "libcef_dll/ctocpp/views/window_ctocpp.h"
|
||||
#include "libcef_dll/shutdown_checker.h"
|
||||
|
||||
namespace {
|
||||
|
||||
@@ -23,6 +24,8 @@ namespace {
|
||||
void CEF_CALLBACK
|
||||
window_delegate_on_window_created(struct _cef_window_delegate_t* self,
|
||||
cef_window_t* window) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -41,6 +44,8 @@ window_delegate_on_window_created(struct _cef_window_delegate_t* self,
|
||||
void CEF_CALLBACK
|
||||
window_delegate_on_window_destroyed(struct _cef_window_delegate_t* self,
|
||||
cef_window_t* window) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -61,6 +66,8 @@ window_delegate_get_parent_window(struct _cef_window_delegate_t* self,
|
||||
cef_window_t* window,
|
||||
int* is_menu,
|
||||
int* can_activate_menu) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -104,6 +111,8 @@ window_delegate_get_parent_window(struct _cef_window_delegate_t* self,
|
||||
int CEF_CALLBACK
|
||||
window_delegate_is_frameless(struct _cef_window_delegate_t* self,
|
||||
cef_window_t* window) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -124,6 +133,8 @@ window_delegate_is_frameless(struct _cef_window_delegate_t* self,
|
||||
|
||||
int CEF_CALLBACK window_delegate_can_resize(struct _cef_window_delegate_t* self,
|
||||
cef_window_t* window) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -145,6 +156,8 @@ int CEF_CALLBACK window_delegate_can_resize(struct _cef_window_delegate_t* self,
|
||||
int CEF_CALLBACK
|
||||
window_delegate_can_maximize(struct _cef_window_delegate_t* self,
|
||||
cef_window_t* window) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -166,6 +179,8 @@ window_delegate_can_maximize(struct _cef_window_delegate_t* self,
|
||||
int CEF_CALLBACK
|
||||
window_delegate_can_minimize(struct _cef_window_delegate_t* self,
|
||||
cef_window_t* window) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -186,6 +201,8 @@ window_delegate_can_minimize(struct _cef_window_delegate_t* self,
|
||||
|
||||
int CEF_CALLBACK window_delegate_can_close(struct _cef_window_delegate_t* self,
|
||||
cef_window_t* window) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -208,6 +225,8 @@ int CEF_CALLBACK
|
||||
window_delegate_on_accelerator(struct _cef_window_delegate_t* self,
|
||||
cef_window_t* window,
|
||||
int command_id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -230,6 +249,8 @@ int CEF_CALLBACK
|
||||
window_delegate_on_key_event(struct _cef_window_delegate_t* self,
|
||||
cef_window_t* window,
|
||||
const struct _cef_key_event_t* event) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -260,6 +281,8 @@ window_delegate_on_key_event(struct _cef_window_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
window_delegate_get_preferred_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -282,6 +305,8 @@ window_delegate_get_preferred_size(struct _cef_view_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
window_delegate_get_minimum_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -304,6 +329,8 @@ window_delegate_get_minimum_size(struct _cef_view_delegate_t* self,
|
||||
cef_size_t CEF_CALLBACK
|
||||
window_delegate_get_maximum_size(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -327,6 +354,8 @@ int CEF_CALLBACK
|
||||
window_delegate_get_height_for_width(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -351,6 +380,8 @@ window_delegate_on_parent_view_changed(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int added,
|
||||
cef_view_t* parent) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -376,6 +407,8 @@ window_delegate_on_child_view_changed(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view,
|
||||
int added,
|
||||
cef_view_t* child) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -398,6 +431,8 @@ window_delegate_on_child_view_changed(struct _cef_view_delegate_t* self,
|
||||
|
||||
void CEF_CALLBACK window_delegate_on_focus(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -415,6 +450,8 @@ void CEF_CALLBACK window_delegate_on_focus(struct _cef_view_delegate_t* self,
|
||||
|
||||
void CEF_CALLBACK window_delegate_on_blur(struct _cef_view_delegate_t* self,
|
||||
cef_view_t* view) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
DCHECK(self);
|
||||
@@ -459,6 +496,12 @@ CefWindowDelegateCppToC::CefWindowDelegateCppToC() {
|
||||
GetStruct()->base.base.on_blur = window_delegate_on_blur;
|
||||
}
|
||||
|
||||
// DESTRUCTOR - Do not edit by hand.
|
||||
|
||||
CefWindowDelegateCppToC::~CefWindowDelegateCppToC() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
}
|
||||
|
||||
template <>
|
||||
CefRefPtr<CefWindowDelegate> CefCppToCRefCounted<
|
||||
CefWindowDelegateCppToC,
|
||||
|
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=3a06ab7bcc914c7789e309f5e47a8504f6be0399$
|
||||
// $hash=ee2fcda18fd480a10fc3c5786d023f2bc58dda3c$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CPPTOC_VIEWS_WINDOW_DELEGATE_CPPTOC_H_
|
||||
@@ -34,6 +34,7 @@ class CefWindowDelegateCppToC
|
||||
cef_window_delegate_t> {
|
||||
public:
|
||||
CefWindowDelegateCppToC();
|
||||
virtual ~CefWindowDelegateCppToC();
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CPPTOC_VIEWS_WINDOW_DELEGATE_CPPTOC_H_
|
||||
|
Reference in New Issue
Block a user