2020-01-06 11:59:05 +02:00
|
|
|
// Copyright (c) 2020 The Chromium Embedded Framework Authors. All rights
|
2012-06-19 16:29:49 +00: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-09-24 21:40:47 -04:00
|
|
|
// $hash=51e9102befaf6a5e88a1a409932316a7571d84f8$
|
2017-05-17 11:29:28 +02:00
|
|
|
//
|
2012-06-19 16:29:49 +00:00
|
|
|
|
|
|
|
#include "libcef_dll/cpptoc/browser_process_handler_cpptoc.h"
|
2020-09-17 18:24:08 -04:00
|
|
|
#include "libcef_dll/cpptoc/client_cpptoc.h"
|
2014-07-10 15:41:30 +00:00
|
|
|
#include "libcef_dll/cpptoc/print_handler_cpptoc.h"
|
2012-09-27 17:07:31 +00:00
|
|
|
#include "libcef_dll/ctocpp/command_line_ctocpp.h"
|
2020-09-24 21:40:47 -04:00
|
|
|
#include "libcef_dll/transfer_util.h"
|
2012-06-19 16:29:49 +00:00
|
|
|
|
2015-04-26 21:40:01 +03:00
|
|
|
namespace {
|
|
|
|
|
2012-06-19 16:29:49 +00:00
|
|
|
// MEMBER FUNCTIONS - Body may be edited by hand.
|
|
|
|
|
2020-09-24 21:40:47 -04:00
|
|
|
void CEF_CALLBACK browser_process_handler_get_cookieable_schemes(
|
|
|
|
struct _cef_browser_process_handler_t* self,
|
|
|
|
cef_string_list_t schemes,
|
|
|
|
int* include_defaults) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return;
|
|
|
|
// Verify param: schemes; type: string_vec_byref
|
|
|
|
DCHECK(schemes);
|
|
|
|
if (!schemes)
|
|
|
|
return;
|
|
|
|
// Verify param: include_defaults; type: bool_byref
|
|
|
|
DCHECK(include_defaults);
|
|
|
|
if (!include_defaults)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Translate param: schemes; type: string_vec_byref
|
|
|
|
std::vector<CefString> schemesList;
|
|
|
|
transfer_string_list_contents(schemes, schemesList);
|
|
|
|
// Translate param: include_defaults; type: bool_byref
|
|
|
|
bool include_defaultsBool =
|
|
|
|
(include_defaults && *include_defaults) ? true : false;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefBrowserProcessHandlerCppToC::Get(self)->GetCookieableSchemes(
|
|
|
|
schemesList, include_defaultsBool);
|
|
|
|
|
|
|
|
// Restore param: schemes; type: string_vec_byref
|
|
|
|
cef_string_list_clear(schemes);
|
|
|
|
transfer_string_list_contents(schemesList, schemes);
|
|
|
|
// Restore param: include_defaults; type: bool_byref
|
|
|
|
if (include_defaults)
|
|
|
|
*include_defaults = include_defaultsBool ? true : false;
|
|
|
|
}
|
|
|
|
|
2012-06-19 16:29:49 +00:00
|
|
|
void CEF_CALLBACK browser_process_handler_on_context_initialized(
|
|
|
|
struct _cef_browser_process_handler_t* self) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefBrowserProcessHandlerCppToC::Get(self)->OnContextInitialized();
|
|
|
|
}
|
|
|
|
|
2012-09-27 17:07:31 +00:00
|
|
|
void CEF_CALLBACK browser_process_handler_on_before_child_process_launch(
|
|
|
|
struct _cef_browser_process_handler_t* self,
|
|
|
|
struct _cef_command_line_t* command_line) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return;
|
|
|
|
// Verify param: command_line; type: refptr_diff
|
|
|
|
DCHECK(command_line);
|
|
|
|
if (!command_line)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefBrowserProcessHandlerCppToC::Get(self)->OnBeforeChildProcessLaunch(
|
|
|
|
CefCommandLineCToCpp::Wrap(command_line));
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
struct _cef_print_handler_t* CEF_CALLBACK
|
|
|
|
browser_process_handler_get_print_handler(
|
2014-07-10 15:41:30 +00:00
|
|
|
struct _cef_browser_process_handler_t* self) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
CefRefPtr<CefPrintHandler> _retval =
|
|
|
|
CefBrowserProcessHandlerCppToC::Get(self)->GetPrintHandler();
|
2014-07-10 15:41:30 +00:00
|
|
|
|
|
|
|
// Return type: refptr_same
|
|
|
|
return CefPrintHandlerCppToC::Wrap(_retval);
|
|
|
|
}
|
|
|
|
|
2016-05-04 14:00:03 -04:00
|
|
|
void CEF_CALLBACK browser_process_handler_on_schedule_message_pump_work(
|
2017-05-17 11:29:28 +02:00
|
|
|
struct _cef_browser_process_handler_t* self,
|
|
|
|
int64 delay_ms) {
|
2016-05-04 14:00:03 -04:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefBrowserProcessHandlerCppToC::Get(self)->OnScheduleMessagePumpWork(
|
|
|
|
delay_ms);
|
|
|
|
}
|
|
|
|
|
2020-09-17 18:24:08 -04:00
|
|
|
struct _cef_client_t* CEF_CALLBACK browser_process_handler_get_default_client(
|
|
|
|
struct _cef_browser_process_handler_t* self) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefRefPtr<CefClient> _retval =
|
|
|
|
CefBrowserProcessHandlerCppToC::Get(self)->GetDefaultClient();
|
|
|
|
|
|
|
|
// Return type: refptr_same
|
|
|
|
return CefClientCppToC::Wrap(_retval);
|
|
|
|
}
|
|
|
|
|
2015-04-26 21:40:01 +03:00
|
|
|
} // namespace
|
|
|
|
|
2012-06-19 16:29:49 +00:00
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
2015-04-26 21:40:01 +03:00
|
|
|
CefBrowserProcessHandlerCppToC::CefBrowserProcessHandlerCppToC() {
|
2020-09-24 21:40:47 -04:00
|
|
|
GetStruct()->get_cookieable_schemes =
|
|
|
|
browser_process_handler_get_cookieable_schemes;
|
2015-04-26 21:40:01 +03:00
|
|
|
GetStruct()->on_context_initialized =
|
2012-06-19 16:29:49 +00:00
|
|
|
browser_process_handler_on_context_initialized;
|
2015-04-26 21:40:01 +03:00
|
|
|
GetStruct()->on_before_child_process_launch =
|
2012-09-27 17:07:31 +00:00
|
|
|
browser_process_handler_on_before_child_process_launch;
|
2015-04-26 21:40:01 +03:00
|
|
|
GetStruct()->get_print_handler = browser_process_handler_get_print_handler;
|
2016-05-04 14:00:03 -04:00
|
|
|
GetStruct()->on_schedule_message_pump_work =
|
|
|
|
browser_process_handler_on_schedule_message_pump_work;
|
2020-09-17 18:24:08 -04:00
|
|
|
GetStruct()->get_default_client = browser_process_handler_get_default_client;
|
2015-04-26 21:40:01 +03:00
|
|
|
}
|
|
|
|
|
2019-01-23 16:42:12 +01:00
|
|
|
// DESTRUCTOR - Do not edit by hand.
|
|
|
|
|
|
|
|
CefBrowserProcessHandlerCppToC::~CefBrowserProcessHandlerCppToC() {}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefRefPtr<CefBrowserProcessHandler> CefCppToCRefCounted<
|
|
|
|
CefBrowserProcessHandlerCppToC,
|
|
|
|
CefBrowserProcessHandler,
|
|
|
|
cef_browser_process_handler_t>::UnwrapDerived(CefWrapperType type,
|
|
|
|
cef_browser_process_handler_t*
|
|
|
|
s) {
|
2015-04-26 21:40:01 +03:00
|
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
2020-01-15 14:53:19 +01:00
|
|
|
return nullptr;
|
2012-06-19 16:29:49 +00:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefWrapperType
|
|
|
|
CefCppToCRefCounted<CefBrowserProcessHandlerCppToC,
|
|
|
|
CefBrowserProcessHandler,
|
|
|
|
cef_browser_process_handler_t>::kWrapperType =
|
|
|
|
WT_BROWSER_PROCESS_HANDLER;
|