mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update generated files for copyright year and bracket style
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// Copyright (c) 2022 The Chromium Embedded Framework Authors. All rights
|
||||
// Copyright (c) 2023 The Chromium Embedded Framework Authors. All rights
|
||||
// reserved. Use of this source code is governed by a BSD-style license that
|
||||
// can be found in the LICENSE file.
|
||||
//
|
||||
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=3268a6e6475c3fbddcf6c83016ca3aae1d4a7c4c$
|
||||
// $hash=dc4a2a8439531603f9bcaeeaa807a955f3846430$
|
||||
//
|
||||
|
||||
#include "libcef_dll/ctocpp/views/textfield_ctocpp.h"
|
||||
@@ -49,8 +49,9 @@ void CefTextfieldCToCpp::SetPasswordInput(bool password_input) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, set_password_input))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_password_input)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -62,8 +63,9 @@ NO_SANITIZE("cfi-icall") bool CefTextfieldCToCpp::IsPasswordInput() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, is_password_input))
|
||||
if (CEF_MEMBER_MISSING(_struct, is_password_input)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -78,8 +80,9 @@ NO_SANITIZE("cfi-icall") void CefTextfieldCToCpp::SetReadOnly(bool read_only) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, set_read_only))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_read_only)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -91,8 +94,9 @@ NO_SANITIZE("cfi-icall") bool CefTextfieldCToCpp::IsReadOnly() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, is_read_only))
|
||||
if (CEF_MEMBER_MISSING(_struct, is_read_only)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -107,8 +111,9 @@ NO_SANITIZE("cfi-icall") CefString CefTextfieldCToCpp::GetText() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, get_text))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_text)) {
|
||||
return CefString();
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -126,15 +131,17 @@ void CefTextfieldCToCpp::SetText(const CefString& text) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, set_text))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_text)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: text; type: string_byref_const
|
||||
DCHECK(!text.empty());
|
||||
if (text.empty())
|
||||
if (text.empty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Execute
|
||||
_struct->set_text(_struct, text.GetStruct());
|
||||
@@ -145,15 +152,17 @@ void CefTextfieldCToCpp::AppendText(const CefString& text) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, append_text))
|
||||
if (CEF_MEMBER_MISSING(_struct, append_text)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: text; type: string_byref_const
|
||||
DCHECK(!text.empty());
|
||||
if (text.empty())
|
||||
if (text.empty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Execute
|
||||
_struct->append_text(_struct, text.GetStruct());
|
||||
@@ -164,15 +173,17 @@ void CefTextfieldCToCpp::InsertOrReplaceText(const CefString& text) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, insert_or_replace_text))
|
||||
if (CEF_MEMBER_MISSING(_struct, insert_or_replace_text)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: text; type: string_byref_const
|
||||
DCHECK(!text.empty());
|
||||
if (text.empty())
|
||||
if (text.empty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Execute
|
||||
_struct->insert_or_replace_text(_struct, text.GetStruct());
|
||||
@@ -182,8 +193,9 @@ NO_SANITIZE("cfi-icall") bool CefTextfieldCToCpp::HasSelection() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, has_selection))
|
||||
if (CEF_MEMBER_MISSING(_struct, has_selection)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -198,8 +210,9 @@ NO_SANITIZE("cfi-icall") CefString CefTextfieldCToCpp::GetSelectedText() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, get_selected_text))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_selected_text)) {
|
||||
return CefString();
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -216,8 +229,9 @@ NO_SANITIZE("cfi-icall") void CefTextfieldCToCpp::SelectAll(bool reversed) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, select_all))
|
||||
if (CEF_MEMBER_MISSING(_struct, select_all)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -229,8 +243,9 @@ NO_SANITIZE("cfi-icall") void CefTextfieldCToCpp::ClearSelection() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, clear_selection))
|
||||
if (CEF_MEMBER_MISSING(_struct, clear_selection)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -242,8 +257,9 @@ NO_SANITIZE("cfi-icall") CefRange CefTextfieldCToCpp::GetSelectedRange() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, get_selected_range))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_selected_range)) {
|
||||
return CefRange();
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -259,8 +275,9 @@ void CefTextfieldCToCpp::SelectRange(const CefRange& range) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, select_range))
|
||||
if (CEF_MEMBER_MISSING(_struct, select_range)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -272,8 +289,9 @@ NO_SANITIZE("cfi-icall") size_t CefTextfieldCToCpp::GetCursorPosition() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, get_cursor_position))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_cursor_position)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -289,8 +307,9 @@ void CefTextfieldCToCpp::SetTextColor(cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, set_text_color))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_text_color)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -302,8 +321,9 @@ NO_SANITIZE("cfi-icall") cef_color_t CefTextfieldCToCpp::GetTextColor() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, get_text_color))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_text_color)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -319,8 +339,9 @@ void CefTextfieldCToCpp::SetSelectionTextColor(cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, set_selection_text_color))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_selection_text_color)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -333,8 +354,9 @@ cef_color_t CefTextfieldCToCpp::GetSelectionTextColor() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, get_selection_text_color))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_selection_text_color)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -350,8 +372,9 @@ void CefTextfieldCToCpp::SetSelectionBackgroundColor(cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, set_selection_background_color))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_selection_background_color)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -364,8 +387,9 @@ cef_color_t CefTextfieldCToCpp::GetSelectionBackgroundColor() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, get_selection_background_color))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_selection_background_color)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -381,15 +405,17 @@ void CefTextfieldCToCpp::SetFontList(const CefString& font_list) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, set_font_list))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_font_list)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: font_list; type: string_byref_const
|
||||
DCHECK(!font_list.empty());
|
||||
if (font_list.empty())
|
||||
if (font_list.empty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Execute
|
||||
_struct->set_font_list(_struct, font_list.GetStruct());
|
||||
@@ -401,8 +427,9 @@ void CefTextfieldCToCpp::ApplyTextColor(cef_color_t color,
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, apply_text_color))
|
||||
if (CEF_MEMBER_MISSING(_struct, apply_text_color)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -417,8 +444,9 @@ void CefTextfieldCToCpp::ApplyTextStyle(cef_text_style_t style,
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, apply_text_style))
|
||||
if (CEF_MEMBER_MISSING(_struct, apply_text_style)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -432,8 +460,9 @@ bool CefTextfieldCToCpp::IsCommandEnabled(
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, is_command_enabled))
|
||||
if (CEF_MEMBER_MISSING(_struct, is_command_enabled)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -449,8 +478,9 @@ void CefTextfieldCToCpp::ExecuteCommand(cef_text_field_commands_t command_id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, execute_command))
|
||||
if (CEF_MEMBER_MISSING(_struct, execute_command)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -462,8 +492,9 @@ NO_SANITIZE("cfi-icall") void CefTextfieldCToCpp::ClearEditHistory() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, clear_edit_history))
|
||||
if (CEF_MEMBER_MISSING(_struct, clear_edit_history)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -476,15 +507,17 @@ void CefTextfieldCToCpp::SetPlaceholderText(const CefString& text) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, set_placeholder_text))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_placeholder_text)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: text; type: string_byref_const
|
||||
DCHECK(!text.empty());
|
||||
if (text.empty())
|
||||
if (text.empty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Execute
|
||||
_struct->set_placeholder_text(_struct, text.GetStruct());
|
||||
@@ -494,8 +527,9 @@ NO_SANITIZE("cfi-icall") CefString CefTextfieldCToCpp::GetPlaceholderText() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, get_placeholder_text))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_placeholder_text)) {
|
||||
return CefString();
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -513,8 +547,9 @@ void CefTextfieldCToCpp::SetPlaceholderTextColor(cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, set_placeholder_text_color))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_placeholder_text_color)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -527,15 +562,17 @@ void CefTextfieldCToCpp::SetAccessibleName(const CefString& name) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_textfield_t* _struct = GetStruct();
|
||||
if (CEF_MEMBER_MISSING(_struct, set_accessible_name))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_accessible_name)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: name; type: string_byref_const
|
||||
DCHECK(!name.empty());
|
||||
if (name.empty())
|
||||
if (name.empty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Execute
|
||||
_struct->set_accessible_name(_struct, name.GetStruct());
|
||||
@@ -546,8 +583,9 @@ CefRefPtr<CefBrowserView> CefTextfieldCToCpp::AsBrowserView() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, as_browser_view))
|
||||
if (CEF_MEMBER_MISSING(_struct, as_browser_view)) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -562,8 +600,9 @@ NO_SANITIZE("cfi-icall") CefRefPtr<CefButton> CefTextfieldCToCpp::AsButton() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, as_button))
|
||||
if (CEF_MEMBER_MISSING(_struct, as_button)) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -578,8 +617,9 @@ NO_SANITIZE("cfi-icall") CefRefPtr<CefPanel> CefTextfieldCToCpp::AsPanel() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, as_panel))
|
||||
if (CEF_MEMBER_MISSING(_struct, as_panel)) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -595,8 +635,9 @@ CefRefPtr<CefScrollView> CefTextfieldCToCpp::AsScrollView() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, as_scroll_view))
|
||||
if (CEF_MEMBER_MISSING(_struct, as_scroll_view)) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -612,8 +653,9 @@ CefRefPtr<CefTextfield> CefTextfieldCToCpp::AsTextfield() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, as_textfield))
|
||||
if (CEF_MEMBER_MISSING(_struct, as_textfield)) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -628,8 +670,9 @@ NO_SANITIZE("cfi-icall") CefString CefTextfieldCToCpp::GetTypeString() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_type_string))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_type_string)) {
|
||||
return CefString();
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -647,8 +690,9 @@ CefString CefTextfieldCToCpp::ToString(bool include_children) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, to_string))
|
||||
if (CEF_MEMBER_MISSING(_struct, to_string)) {
|
||||
return CefString();
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -665,8 +709,9 @@ NO_SANITIZE("cfi-icall") bool CefTextfieldCToCpp::IsValid() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, is_valid))
|
||||
if (CEF_MEMBER_MISSING(_struct, is_valid)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -681,8 +726,9 @@ NO_SANITIZE("cfi-icall") bool CefTextfieldCToCpp::IsAttached() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, is_attached))
|
||||
if (CEF_MEMBER_MISSING(_struct, is_attached)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -698,15 +744,17 @@ bool CefTextfieldCToCpp::IsSame(CefRefPtr<CefView> that) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, is_same))
|
||||
if (CEF_MEMBER_MISSING(_struct, is_same)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: that; type: refptr_same
|
||||
DCHECK(that.get());
|
||||
if (!that.get())
|
||||
if (!that.get()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Execute
|
||||
int _retval = _struct->is_same(_struct, CefViewCToCpp::Unwrap(that));
|
||||
@@ -720,8 +768,9 @@ CefRefPtr<CefViewDelegate> CefTextfieldCToCpp::GetDelegate() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_delegate))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_delegate)) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -736,8 +785,9 @@ NO_SANITIZE("cfi-icall") CefRefPtr<CefWindow> CefTextfieldCToCpp::GetWindow() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_window))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_window)) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -752,8 +802,9 @@ NO_SANITIZE("cfi-icall") int CefTextfieldCToCpp::GetID() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_id))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_id)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -768,8 +819,9 @@ NO_SANITIZE("cfi-icall") void CefTextfieldCToCpp::SetID(int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, set_id))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_id)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -781,8 +833,9 @@ NO_SANITIZE("cfi-icall") int CefTextfieldCToCpp::GetGroupID() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_group_id))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_group_id)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -797,8 +850,9 @@ NO_SANITIZE("cfi-icall") void CefTextfieldCToCpp::SetGroupID(int group_id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, set_group_id))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_group_id)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -811,8 +865,9 @@ CefRefPtr<CefView> CefTextfieldCToCpp::GetParentView() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_parent_view))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_parent_view)) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -828,8 +883,9 @@ CefRefPtr<CefView> CefTextfieldCToCpp::GetViewForID(int id) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_view_for_id))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_view_for_id)) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -845,8 +901,9 @@ void CefTextfieldCToCpp::SetBounds(const CefRect& bounds) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, set_bounds))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_bounds)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -858,8 +915,9 @@ NO_SANITIZE("cfi-icall") CefRect CefTextfieldCToCpp::GetBounds() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_bounds))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_bounds)) {
|
||||
return CefRect();
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -874,8 +932,9 @@ NO_SANITIZE("cfi-icall") CefRect CefTextfieldCToCpp::GetBoundsInScreen() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_bounds_in_screen))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_bounds_in_screen)) {
|
||||
return CefRect();
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -890,8 +949,9 @@ NO_SANITIZE("cfi-icall") void CefTextfieldCToCpp::SetSize(const CefSize& size) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, set_size))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_size)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -903,8 +963,9 @@ NO_SANITIZE("cfi-icall") CefSize CefTextfieldCToCpp::GetSize() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_size))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_size)) {
|
||||
return CefSize();
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -920,8 +981,9 @@ void CefTextfieldCToCpp::SetPosition(const CefPoint& position) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, set_position))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_position)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -933,8 +995,9 @@ NO_SANITIZE("cfi-icall") CefPoint CefTextfieldCToCpp::GetPosition() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_position))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_position)) {
|
||||
return CefPoint();
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -950,8 +1013,9 @@ void CefTextfieldCToCpp::SetInsets(const CefInsets& insets) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, set_insets))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_insets)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -963,8 +1027,9 @@ NO_SANITIZE("cfi-icall") CefInsets CefTextfieldCToCpp::GetInsets() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_insets))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_insets)) {
|
||||
return CefInsets();
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -979,8 +1044,9 @@ NO_SANITIZE("cfi-icall") CefSize CefTextfieldCToCpp::GetPreferredSize() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_preferred_size))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_preferred_size)) {
|
||||
return CefSize();
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -995,8 +1061,9 @@ NO_SANITIZE("cfi-icall") void CefTextfieldCToCpp::SizeToPreferredSize() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, size_to_preferred_size))
|
||||
if (CEF_MEMBER_MISSING(_struct, size_to_preferred_size)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1008,8 +1075,9 @@ NO_SANITIZE("cfi-icall") CefSize CefTextfieldCToCpp::GetMinimumSize() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_minimum_size))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_minimum_size)) {
|
||||
return CefSize();
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1024,8 +1092,9 @@ NO_SANITIZE("cfi-icall") CefSize CefTextfieldCToCpp::GetMaximumSize() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_maximum_size))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_maximum_size)) {
|
||||
return CefSize();
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1040,8 +1109,9 @@ NO_SANITIZE("cfi-icall") int CefTextfieldCToCpp::GetHeightForWidth(int width) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_height_for_width))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_height_for_width)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1056,8 +1126,9 @@ NO_SANITIZE("cfi-icall") void CefTextfieldCToCpp::InvalidateLayout() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, invalidate_layout))
|
||||
if (CEF_MEMBER_MISSING(_struct, invalidate_layout)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1069,8 +1140,9 @@ NO_SANITIZE("cfi-icall") void CefTextfieldCToCpp::SetVisible(bool visible) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, set_visible))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_visible)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1082,8 +1154,9 @@ NO_SANITIZE("cfi-icall") bool CefTextfieldCToCpp::IsVisible() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, is_visible))
|
||||
if (CEF_MEMBER_MISSING(_struct, is_visible)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1098,8 +1171,9 @@ NO_SANITIZE("cfi-icall") bool CefTextfieldCToCpp::IsDrawn() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, is_drawn))
|
||||
if (CEF_MEMBER_MISSING(_struct, is_drawn)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1114,8 +1188,9 @@ NO_SANITIZE("cfi-icall") void CefTextfieldCToCpp::SetEnabled(bool enabled) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, set_enabled))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_enabled)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1127,8 +1202,9 @@ NO_SANITIZE("cfi-icall") bool CefTextfieldCToCpp::IsEnabled() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, is_enabled))
|
||||
if (CEF_MEMBER_MISSING(_struct, is_enabled)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1143,8 +1219,9 @@ NO_SANITIZE("cfi-icall") void CefTextfieldCToCpp::SetFocusable(bool focusable) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, set_focusable))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_focusable)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1156,8 +1233,9 @@ NO_SANITIZE("cfi-icall") bool CefTextfieldCToCpp::IsFocusable() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, is_focusable))
|
||||
if (CEF_MEMBER_MISSING(_struct, is_focusable)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1172,8 +1250,9 @@ NO_SANITIZE("cfi-icall") bool CefTextfieldCToCpp::IsAccessibilityFocusable() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, is_accessibility_focusable))
|
||||
if (CEF_MEMBER_MISSING(_struct, is_accessibility_focusable)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1188,8 +1267,9 @@ NO_SANITIZE("cfi-icall") void CefTextfieldCToCpp::RequestFocus() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, request_focus))
|
||||
if (CEF_MEMBER_MISSING(_struct, request_focus)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1202,8 +1282,9 @@ void CefTextfieldCToCpp::SetBackgroundColor(cef_color_t color) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, set_background_color))
|
||||
if (CEF_MEMBER_MISSING(_struct, set_background_color)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1215,8 +1296,9 @@ NO_SANITIZE("cfi-icall") cef_color_t CefTextfieldCToCpp::GetBackgroundColor() {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, get_background_color))
|
||||
if (CEF_MEMBER_MISSING(_struct, get_background_color)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1232,8 +1314,9 @@ bool CefTextfieldCToCpp::ConvertPointToScreen(CefPoint& point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, convert_point_to_screen))
|
||||
if (CEF_MEMBER_MISSING(_struct, convert_point_to_screen)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1249,8 +1332,9 @@ bool CefTextfieldCToCpp::ConvertPointFromScreen(CefPoint& point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, convert_point_from_screen))
|
||||
if (CEF_MEMBER_MISSING(_struct, convert_point_from_screen)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1266,8 +1350,9 @@ bool CefTextfieldCToCpp::ConvertPointToWindow(CefPoint& point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, convert_point_to_window))
|
||||
if (CEF_MEMBER_MISSING(_struct, convert_point_to_window)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1283,8 +1368,9 @@ bool CefTextfieldCToCpp::ConvertPointFromWindow(CefPoint& point) {
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, convert_point_from_window))
|
||||
if (CEF_MEMBER_MISSING(_struct, convert_point_from_window)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
@@ -1301,15 +1387,17 @@ bool CefTextfieldCToCpp::ConvertPointToView(CefRefPtr<CefView> view,
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, convert_point_to_view))
|
||||
if (CEF_MEMBER_MISSING(_struct, convert_point_to_view)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: view; type: refptr_same
|
||||
DCHECK(view.get());
|
||||
if (!view.get())
|
||||
if (!view.get()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Execute
|
||||
int _retval = _struct->convert_point_to_view(
|
||||
@@ -1325,15 +1413,17 @@ bool CefTextfieldCToCpp::ConvertPointFromView(CefRefPtr<CefView> view,
|
||||
shutdown_checker::AssertNotShutdown();
|
||||
|
||||
cef_view_t* _struct = reinterpret_cast<cef_view_t*>(GetStruct());
|
||||
if (CEF_MEMBER_MISSING(_struct, convert_point_from_view))
|
||||
if (CEF_MEMBER_MISSING(_struct, convert_point_from_view)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
||||
|
||||
// Verify param: view; type: refptr_same
|
||||
DCHECK(view.get());
|
||||
if (!view.get())
|
||||
if (!view.get()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Execute
|
||||
int _retval = _struct->convert_point_from_view(
|
||||
|
Reference in New Issue
Block a user