2024-01-05 19:03:36 +01:00
|
|
|
// Copyright (c) 2024 The Chromium Embedded Framework Authors. All rights
|
2012-06-19 18:29:49 +02:00
|
|
|
// 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.
|
|
|
|
//
|
2024-02-08 19:41:18 +01:00
|
|
|
// $hash=1487ab43138b7c4bee2b05064a91ed051ff2533e$
|
2017-05-17 11:29:28 +02:00
|
|
|
//
|
2012-06-19 18:29:49 +02:00
|
|
|
|
2017-05-19 11:06:00 +02:00
|
|
|
#include "libcef_dll/ctocpp/browser_process_handler_ctocpp.h"
|
2024-04-30 17:45:07 +02:00
|
|
|
|
2012-09-27 19:07:31 +02:00
|
|
|
#include "libcef_dll/cpptoc/command_line_cpptoc.h"
|
2022-10-26 00:50:29 +02:00
|
|
|
#include "libcef_dll/cpptoc/preference_registrar_cpptoc.h"
|
2020-09-18 00:24:08 +02:00
|
|
|
#include "libcef_dll/ctocpp/client_ctocpp.h"
|
2024-02-08 19:41:18 +01:00
|
|
|
#include "libcef_dll/ctocpp/request_context_handler_ctocpp.h"
|
2012-06-19 18:29:49 +02:00
|
|
|
|
|
|
|
// VIRTUAL METHODS - Body may be edited by hand.
|
|
|
|
|
2022-10-26 00:50:29 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
void CefBrowserProcessHandlerCToCpp::OnRegisterCustomPreferences(
|
|
|
|
cef_preferences_type_t type,
|
|
|
|
CefRawPtr<CefPreferenceRegistrar> registrar) {
|
|
|
|
cef_browser_process_handler_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_register_custom_preferences)) {
|
2022-10-26 00:50:29 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2022-10-26 00:50:29 +02:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: registrar; type: rawptr_diff
|
|
|
|
DCHECK(registrar);
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!registrar) {
|
2022-10-26 00:50:29 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2022-10-26 00:50:29 +02:00
|
|
|
|
|
|
|
// Translate param: registrar; type: rawptr_diff
|
|
|
|
CefOwnPtr<CefPreferenceRegistrarCppToC> registrarPtr(
|
|
|
|
CefPreferenceRegistrarCppToC::WrapRaw(registrar));
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
_struct->on_register_custom_preferences(_struct, type,
|
|
|
|
registrarPtr->GetStruct());
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2012-06-19 18:29:49 +02:00
|
|
|
void CefBrowserProcessHandlerCToCpp::OnContextInitialized() {
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_browser_process_handler_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_context_initialized)) {
|
2012-06-19 18:29:49 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2012-06-19 18:29:49 +02:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Execute
|
2015-04-26 20:40:01 +02:00
|
|
|
_struct->on_context_initialized(_struct);
|
2012-06-19 18:29:49 +02:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2012-09-27 19:07:31 +02:00
|
|
|
void CefBrowserProcessHandlerCToCpp::OnBeforeChildProcessLaunch(
|
|
|
|
CefRefPtr<CefCommandLine> command_line) {
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_browser_process_handler_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_before_child_process_launch)) {
|
2012-09-27 19:07:31 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2012-09-27 19:07:31 +02:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: command_line; type: refptr_diff
|
|
|
|
DCHECK(command_line.get());
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!command_line.get()) {
|
2012-09-27 19:07:31 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2012-09-27 19:07:31 +02:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
_struct->on_before_child_process_launch(
|
|
|
|
_struct, CefCommandLineCppToC::Wrap(command_line));
|
2012-09-27 19:07:31 +02:00
|
|
|
}
|
|
|
|
|
2023-11-29 02:33:44 +01:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
bool CefBrowserProcessHandlerCToCpp::OnAlreadyRunningAppRelaunch(
|
|
|
|
CefRefPtr<CefCommandLine> command_line,
|
|
|
|
const CefString& current_directory) {
|
|
|
|
cef_browser_process_handler_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_already_running_app_relaunch)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: command_line; type: refptr_diff
|
|
|
|
DCHECK(command_line.get());
|
|
|
|
if (!command_line.get()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Unverified params: current_directory
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
int _retval = _struct->on_already_running_app_relaunch(
|
|
|
|
_struct, CefCommandLineCppToC::Wrap(command_line),
|
|
|
|
current_directory.GetStruct());
|
|
|
|
|
|
|
|
// Return type: bool
|
|
|
|
return _retval ? true : false;
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2023-06-01 16:07:20 +02:00
|
|
|
void CefBrowserProcessHandlerCToCpp::OnScheduleMessagePumpWork(
|
|
|
|
int64_t delay_ms) {
|
2016-05-04 20:00:03 +02:00
|
|
|
cef_browser_process_handler_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_schedule_message_pump_work)) {
|
2016-05-04 20:00:03 +02:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-05-04 20:00:03 +02:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
_struct->on_schedule_message_pump_work(_struct, delay_ms);
|
2016-05-04 20:00:03 +02:00
|
|
|
}
|
|
|
|
|
2020-09-18 00:24:08 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
CefRefPtr<CefClient> CefBrowserProcessHandlerCToCpp::GetDefaultClient() {
|
|
|
|
cef_browser_process_handler_t* _struct = GetStruct();
|
2023-01-02 23:47:15 +01:00
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_default_client)) {
|
2020-09-18 00:24:08 +02:00
|
|
|
return nullptr;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2020-09-18 00:24:08 +02:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
cef_client_t* _retval = _struct->get_default_client(_struct);
|
|
|
|
|
|
|
|
// Return type: refptr_same
|
|
|
|
return CefClientCToCpp::Wrap(_retval);
|
|
|
|
}
|
|
|
|
|
2024-02-08 19:41:18 +01:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
CefRefPtr<CefRequestContextHandler>
|
|
|
|
CefBrowserProcessHandlerCToCpp::GetDefaultRequestContextHandler() {
|
|
|
|
cef_browser_process_handler_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_default_request_context_handler)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
cef_request_context_handler_t* _retval =
|
|
|
|
_struct->get_default_request_context_handler(_struct);
|
|
|
|
|
|
|
|
// Return type: refptr_same
|
|
|
|
return CefRequestContextHandlerCToCpp::Wrap(_retval);
|
|
|
|
}
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
CefBrowserProcessHandlerCToCpp::CefBrowserProcessHandlerCToCpp() {}
|
2015-04-26 20:40:01 +02:00
|
|
|
|
2019-01-23 16:42:12 +01:00
|
|
|
// DESTRUCTOR - Do not edit by hand.
|
|
|
|
|
|
|
|
CefBrowserProcessHandlerCToCpp::~CefBrowserProcessHandlerCToCpp() {}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
cef_browser_process_handler_t* CefCToCppRefCounted<
|
|
|
|
CefBrowserProcessHandlerCToCpp,
|
|
|
|
CefBrowserProcessHandler,
|
|
|
|
cef_browser_process_handler_t>::UnwrapDerived(CefWrapperType type,
|
|
|
|
CefBrowserProcessHandler* c) {
|
2023-05-08 17:15:02 +02:00
|
|
|
DCHECK(false) << "Unexpected class type: " << type;
|
2020-01-15 14:53:19 +01:00
|
|
|
return nullptr;
|
2015-04-26 20:40:01 +02:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefWrapperType
|
|
|
|
CefCToCppRefCounted<CefBrowserProcessHandlerCToCpp,
|
|
|
|
CefBrowserProcessHandler,
|
|
|
|
cef_browser_process_handler_t>::kWrapperType =
|
|
|
|
WT_BROWSER_PROCESS_HANDLER;
|