blob: 92e8fb4ae91a2f306278d75167b6b3a06ab4bfbd [file] [log] [blame]
// Copyright (c) 2020 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.
//
// ---------------------------------------------------------------------------
//
// This file was generated by the CEF translator tool. If making changes by
// hand only do so within the body of existing method and function
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=c423c0e433e50b85f28dea833aa19e12404f3139$
//
#include "libcef_dll/ctocpp/menu_model_delegate_ctocpp.h"
#include "libcef_dll/cpptoc/menu_model_cpptoc.h"
#include "libcef_dll/shutdown_checker.h"
// VIRTUAL METHODS - Body may be edited by hand.
NO_SANITIZE("cfi-icall")
void CefMenuModelDelegateCToCpp::ExecuteCommand(
CefRefPtr<CefMenuModel> menu_model,
int command_id,
cef_event_flags_t event_flags) {
shutdown_checker::AssertNotShutdown();
cef_menu_model_delegate_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, execute_command))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: menu_model; type: refptr_diff
DCHECK(menu_model.get());
if (!menu_model.get())
return;
// Execute
_struct->execute_command(_struct, CefMenuModelCppToC::Wrap(menu_model),
command_id, event_flags);
}
NO_SANITIZE("cfi-icall")
void CefMenuModelDelegateCToCpp::MouseOutsideMenu(
CefRefPtr<CefMenuModel> menu_model,
const CefPoint& screen_point) {
shutdown_checker::AssertNotShutdown();
cef_menu_model_delegate_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, mouse_outside_menu))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: menu_model; type: refptr_diff
DCHECK(menu_model.get());
if (!menu_model.get())
return;
// Execute
_struct->mouse_outside_menu(_struct, CefMenuModelCppToC::Wrap(menu_model),
&screen_point);
}
NO_SANITIZE("cfi-icall")
void CefMenuModelDelegateCToCpp::UnhandledOpenSubmenu(
CefRefPtr<CefMenuModel> menu_model,
bool is_rtl) {
shutdown_checker::AssertNotShutdown();
cef_menu_model_delegate_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, unhandled_open_submenu))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: menu_model; type: refptr_diff
DCHECK(menu_model.get());
if (!menu_model.get())
return;
// Execute
_struct->unhandled_open_submenu(_struct, CefMenuModelCppToC::Wrap(menu_model),
is_rtl);
}
NO_SANITIZE("cfi-icall")
void CefMenuModelDelegateCToCpp::UnhandledCloseSubmenu(
CefRefPtr<CefMenuModel> menu_model,
bool is_rtl) {
shutdown_checker::AssertNotShutdown();
cef_menu_model_delegate_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, unhandled_close_submenu))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: menu_model; type: refptr_diff
DCHECK(menu_model.get());
if (!menu_model.get())
return;
// Execute
_struct->unhandled_close_submenu(
_struct, CefMenuModelCppToC::Wrap(menu_model), is_rtl);
}
NO_SANITIZE("cfi-icall")
void CefMenuModelDelegateCToCpp::MenuWillShow(
CefRefPtr<CefMenuModel> menu_model) {
shutdown_checker::AssertNotShutdown();
cef_menu_model_delegate_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, menu_will_show))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: menu_model; type: refptr_diff
DCHECK(menu_model.get());
if (!menu_model.get())
return;
// Execute
_struct->menu_will_show(_struct, CefMenuModelCppToC::Wrap(menu_model));
}
NO_SANITIZE("cfi-icall")
void CefMenuModelDelegateCToCpp::MenuClosed(
CefRefPtr<CefMenuModel> menu_model) {
shutdown_checker::AssertNotShutdown();
cef_menu_model_delegate_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, menu_closed))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: menu_model; type: refptr_diff
DCHECK(menu_model.get());
if (!menu_model.get())
return;
// Execute
_struct->menu_closed(_struct, CefMenuModelCppToC::Wrap(menu_model));
}
NO_SANITIZE("cfi-icall")
bool CefMenuModelDelegateCToCpp::FormatLabel(CefRefPtr<CefMenuModel> menu_model,
CefString& label) {
shutdown_checker::AssertNotShutdown();
cef_menu_model_delegate_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, format_label))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: menu_model; type: refptr_diff
DCHECK(menu_model.get());
if (!menu_model.get())
return false;
// Execute
int _retval = _struct->format_label(
_struct, CefMenuModelCppToC::Wrap(menu_model), label.GetWritableStruct());
// Return type: bool
return _retval ? true : false;
}
// CONSTRUCTOR - Do not edit by hand.
CefMenuModelDelegateCToCpp::CefMenuModelDelegateCToCpp() {}
// DESTRUCTOR - Do not edit by hand.
CefMenuModelDelegateCToCpp::~CefMenuModelDelegateCToCpp() {
shutdown_checker::AssertNotShutdown();
}
template <>
cef_menu_model_delegate_t* CefCToCppRefCounted<
CefMenuModelDelegateCToCpp,
CefMenuModelDelegate,
cef_menu_model_delegate_t>::UnwrapDerived(CefWrapperType type,
CefMenuModelDelegate* c) {
NOTREACHED() << "Unexpected class type: " << type;
return nullptr;
}
template <>
CefWrapperType CefCToCppRefCounted<CefMenuModelDelegateCToCpp,
CefMenuModelDelegate,
cef_menu_model_delegate_t>::kWrapperType =
WT_MENU_MODEL_DELEGATE;