2020-01-06 10:59:05 +01:00
|
|
|
// Copyright (c) 2020 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.
|
|
|
|
//
|
2020-01-15 14:53:19 +01:00
|
|
|
// $hash=622d56aec0a5d6485a586bd6d993df7af4fa2d62$
|
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"
|
2012-09-27 19:07:31 +02:00
|
|
|
#include "libcef_dll/cpptoc/command_line_cpptoc.h"
|
2012-11-20 21:08:36 +01:00
|
|
|
#include "libcef_dll/cpptoc/list_value_cpptoc.h"
|
2014-07-10 17:41:30 +02:00
|
|
|
#include "libcef_dll/ctocpp/print_handler_ctocpp.h"
|
2012-06-19 18:29:49 +02:00
|
|
|
|
|
|
|
// VIRTUAL METHODS - Body may be edited by hand.
|
|
|
|
|
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();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_context_initialized))
|
2012-06-19 18:29:49 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
// 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();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_before_child_process_launch))
|
2012-09-27 19:07:31 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: command_line; type: refptr_diff
|
|
|
|
DCHECK(command_line.get());
|
|
|
|
if (!command_line.get())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// 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
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2012-11-20 21:08:36 +01:00
|
|
|
void CefBrowserProcessHandlerCToCpp::OnRenderProcessThreadCreated(
|
|
|
|
CefRefPtr<CefListValue> extra_info) {
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_browser_process_handler_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_render_process_thread_created))
|
2012-11-20 21:08:36 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: extra_info; type: refptr_diff
|
|
|
|
DCHECK(extra_info.get());
|
|
|
|
if (!extra_info.get())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
_struct->on_render_process_thread_created(
|
|
|
|
_struct, CefListValueCppToC::Wrap(extra_info));
|
2012-11-20 21:08:36 +01:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2014-07-10 17:41:30 +02:00
|
|
|
CefRefPtr<CefPrintHandler> CefBrowserProcessHandlerCToCpp::GetPrintHandler() {
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_browser_process_handler_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_print_handler))
|
2020-01-15 14:53:19 +01:00
|
|
|
return nullptr;
|
2014-07-10 17:41:30 +02:00
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Execute
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_print_handler_t* _retval = _struct->get_print_handler(_struct);
|
2014-07-10 17:41:30 +02:00
|
|
|
|
|
|
|
// Return type: refptr_same
|
|
|
|
return CefPrintHandlerCToCpp::Wrap(_retval);
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2016-05-04 20:00:03 +02:00
|
|
|
void CefBrowserProcessHandlerCToCpp::OnScheduleMessagePumpWork(int64 delay_ms) {
|
|
|
|
cef_browser_process_handler_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_schedule_message_pump_work))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// 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
|
|
|
}
|
|
|
|
|
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) {
|
2015-04-26 20:40:01 +02:00
|
|
|
NOTREACHED() << "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;
|