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,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>::
|
||||
|
Reference in New Issue
Block a user