// Copyright (c) 2019 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=0a9cd51fc329910757b0557c2337df3b9245c7a8$ // #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 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 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 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 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 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 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 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 NULL; } template <> CefWrapperType CefCToCppRefCounted::kWrapperType = WT_MENU_MODEL_DELEGATE;