// Copyright (c) 2025 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=c9c4be48d36d029203bc7f92cda4bddb1f03eb13$ // #include "libcef_dll/ctocpp/process_message_ctocpp.h" #include "libcef_dll/ctocpp/list_value_ctocpp.h" #include "libcef_dll/ctocpp/shared_memory_region_ctocpp.h" #include "libcef_dll/shutdown_checker.h" // STATIC METHODS - Body may be edited by hand. NO_SANITIZE("cfi-icall") CefRefPtr CefProcessMessage::Create(const CefString& name) { shutdown_checker::AssertNotShutdown(); // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Verify param: name; type: string_byref_const DCHECK(!name.empty()); if (name.empty()) { return nullptr; } // Execute auto* _retval = cef_process_message_create(name.GetStruct()); // Return type: refptr_same return CefProcessMessageCToCpp_Wrap(_retval); } // VIRTUAL METHODS - Body may be edited by hand. NO_SANITIZE("cfi-icall") bool CefProcessMessageCToCpp::IsValid() { shutdown_checker::AssertNotShutdown(); auto* _struct = GetStruct(); if (!_struct->is_valid) { return false; } // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->is_valid(_struct); // Return type: bool return _retval ? true : false; } NO_SANITIZE("cfi-icall") bool CefProcessMessageCToCpp::IsReadOnly() { shutdown_checker::AssertNotShutdown(); auto* _struct = GetStruct(); if (!_struct->is_read_only) { return false; } // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->is_read_only(_struct); // Return type: bool return _retval ? true : false; } NO_SANITIZE("cfi-icall") CefRefPtr CefProcessMessageCToCpp::Copy() { shutdown_checker::AssertNotShutdown(); auto* _struct = GetStruct(); if (!_struct->copy) { return nullptr; } // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute auto* _retval = _struct->copy(_struct); // Return type: refptr_same return CefProcessMessageCToCpp_Wrap(_retval); } NO_SANITIZE("cfi-icall") CefString CefProcessMessageCToCpp::GetName() { shutdown_checker::AssertNotShutdown(); auto* _struct = GetStruct(); if (!_struct->get_name) { return CefString(); } // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_string_userfree_t _retval = _struct->get_name(_struct); // Return type: string CefString _retvalStr; _retvalStr.AttachToUserFree(_retval); return _retvalStr; } NO_SANITIZE("cfi-icall") CefRefPtr CefProcessMessageCToCpp::GetArgumentList() { shutdown_checker::AssertNotShutdown(); auto* _struct = GetStruct(); if (!_struct->get_argument_list) { return nullptr; } // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute auto* _retval = _struct->get_argument_list(_struct); // Return type: refptr_same return CefListValueCToCpp_Wrap(_retval); } NO_SANITIZE("cfi-icall") CefRefPtr< CefSharedMemoryRegion> CefProcessMessageCToCpp::GetSharedMemoryRegion() { shutdown_checker::AssertNotShutdown(); auto* _struct = GetStruct(); if (!_struct->get_shared_memory_region) { return nullptr; } // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute auto* _retval = _struct->get_shared_memory_region(_struct); // Return type: refptr_same return CefSharedMemoryRegionCToCpp_Wrap(_retval); } // CONSTRUCTOR - Do not edit by hand. CefProcessMessageCToCpp::CefProcessMessageCToCpp() {} // DESTRUCTOR - Do not edit by hand. CefProcessMessageCToCpp::~CefProcessMessageCToCpp() { shutdown_checker::AssertNotShutdown(); } template <> cef_process_message_t* CefCToCppRefCounted< CefProcessMessageCToCpp, CefProcessMessage, cef_process_message_t>::UnwrapDerived(CefWrapperType type, CefProcessMessage* c) { CHECK(false) << __func__ << " called with unexpected class type " << type; return nullptr; } template <> CefWrapperType CefCToCppRefCounted::kWrapperType = WT_PROCESS_MESSAGE;