2022-01-06 19:34:35 +01:00
|
|
|
// Copyright (c) 2022 The Chromium Embedded Framework Authors. All rights
|
2012-04-03 03:34:16 +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.
|
|
|
|
//
|
2022-01-06 19:34:35 +01:00
|
|
|
// $hash=ee267b6567062246b9f82b4b50b68d82d2cc939f$
|
2017-05-17 11:29:28 +02:00
|
|
|
//
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
#include "libcef_dll/cpptoc/app_cpptoc.h"
|
2012-06-19 18:29:49 +02:00
|
|
|
#include "libcef_dll/cpptoc/browser_process_handler_cpptoc.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "libcef_dll/cpptoc/render_process_handler_cpptoc.h"
|
|
|
|
#include "libcef_dll/cpptoc/resource_bundle_handler_cpptoc.h"
|
|
|
|
#include "libcef_dll/ctocpp/command_line_ctocpp.h"
|
2012-04-24 20:01:48 +02:00
|
|
|
#include "libcef_dll/ctocpp/scheme_registrar_ctocpp.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
namespace {
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
// MEMBER FUNCTIONS - Body may be edited by hand.
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
void CEF_CALLBACK app_on_before_command_line_processing(
|
|
|
|
struct _cef_app_t* self,
|
2012-04-03 03:34:16 +02:00
|
|
|
const cef_string_t* process_type,
|
|
|
|
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;
|
|
|
|
// Unverified params: process_type
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefAppCppToC::Get(self)->OnBeforeCommandLineProcessing(
|
2017-05-17 11:29:28 +02:00
|
|
|
CefString(process_type), CefCommandLineCToCpp::Wrap(command_line));
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
void CEF_CALLBACK
|
|
|
|
app_on_register_custom_schemes(struct _cef_app_t* self,
|
|
|
|
struct _cef_scheme_registrar_t* registrar) {
|
2012-04-24 20:01:48 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return;
|
2017-02-07 22:25:11 +01:00
|
|
|
// Verify param: registrar; type: rawptr_diff
|
2012-04-24 20:01:48 +02:00
|
|
|
DCHECK(registrar);
|
|
|
|
if (!registrar)
|
|
|
|
return;
|
|
|
|
|
2017-02-07 22:25:11 +01:00
|
|
|
// Translate param: registrar; type: rawptr_diff
|
2017-05-17 11:29:28 +02:00
|
|
|
CefOwnPtr<CefSchemeRegistrar> registrarPtr(
|
|
|
|
CefSchemeRegistrarCToCpp::Wrap(registrar));
|
2017-02-07 22:25:11 +01:00
|
|
|
|
2012-04-24 20:01:48 +02:00
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
CefAppCppToC::Get(self)->OnRegisterCustomSchemes(registrarPtr.get());
|
2012-04-24 20:01:48 +02:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
struct _cef_resource_bundle_handler_t* CEF_CALLBACK
|
|
|
|
app_get_resource_bundle_handler(struct _cef_app_t* self) {
|
2012-04-03 03:34:16 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
CefRefPtr<CefResourceBundleHandler> _retval =
|
|
|
|
CefAppCppToC::Get(self)->GetResourceBundleHandler();
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Return type: refptr_same
|
2012-06-19 18:29:49 +02:00
|
|
|
return CefResourceBundleHandlerCppToC::Wrap(_retval);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
struct _cef_browser_process_handler_t* CEF_CALLBACK
|
|
|
|
app_get_browser_process_handler(struct _cef_app_t* self) {
|
2012-04-03 03:34:16 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
CefRefPtr<CefBrowserProcessHandler> _retval =
|
|
|
|
CefAppCppToC::Get(self)->GetBrowserProcessHandler();
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Return type: refptr_same
|
2012-06-19 18:29:49 +02:00
|
|
|
return CefBrowserProcessHandlerCppToC::Wrap(_retval);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
struct _cef_render_process_handler_t* CEF_CALLBACK
|
|
|
|
app_get_render_process_handler(struct _cef_app_t* self) {
|
2012-04-03 03:34:16 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
CefRefPtr<CefRenderProcessHandler> _retval =
|
|
|
|
CefAppCppToC::Get(self)->GetRenderProcessHandler();
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Return type: refptr_same
|
2012-06-19 18:29:49 +02:00
|
|
|
return CefRenderProcessHandlerCppToC::Wrap(_retval);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
} // namespace
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
CefAppCppToC::CefAppCppToC() {
|
|
|
|
GetStruct()->on_before_command_line_processing =
|
2012-04-03 03:34:16 +02:00
|
|
|
app_on_before_command_line_processing;
|
2015-04-26 20:40:01 +02:00
|
|
|
GetStruct()->on_register_custom_schemes = app_on_register_custom_schemes;
|
|
|
|
GetStruct()->get_resource_bundle_handler = app_get_resource_bundle_handler;
|
|
|
|
GetStruct()->get_browser_process_handler = app_get_browser_process_handler;
|
|
|
|
GetStruct()->get_render_process_handler = app_get_render_process_handler;
|
|
|
|
}
|
|
|
|
|
2019-01-23 16:42:12 +01:00
|
|
|
// DESTRUCTOR - Do not edit by hand.
|
|
|
|
|
|
|
|
CefAppCppToC::~CefAppCppToC() {}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefRefPtr<CefApp>
|
|
|
|
CefCppToCRefCounted<CefAppCppToC, CefApp, cef_app_t>::UnwrapDerived(
|
|
|
|
CefWrapperType type,
|
|
|
|
cef_app_t* s) {
|
2015-04-26 20:40:01 +02:00
|
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
2020-01-15 14:53:19 +01:00
|
|
|
return nullptr;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefWrapperType
|
|
|
|
CefCppToCRefCounted<CefAppCppToC, CefApp, cef_app_t>::kWrapperType = WT_APP;
|