2019-01-10 15:22:19 +01:00
|
|
|
// Copyright (c) 2019 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.
|
|
|
|
//
|
2019-01-23 17:10:23 +01:00
|
|
|
// $hash=637ec77be89bae116c3c82acbb897ca5edc965ed$
|
2017-05-17 11:29:28 +02:00
|
|
|
//
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2017-05-19 11:06:00 +02:00
|
|
|
#include "libcef_dll/ctocpp/app_ctocpp.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "libcef_dll/cpptoc/command_line_cpptoc.h"
|
2012-04-24 20:01:48 +02:00
|
|
|
#include "libcef_dll/cpptoc/scheme_registrar_cpptoc.h"
|
2012-06-19 18:29:49 +02:00
|
|
|
#include "libcef_dll/ctocpp/browser_process_handler_ctocpp.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "libcef_dll/ctocpp/render_process_handler_ctocpp.h"
|
|
|
|
#include "libcef_dll/ctocpp/resource_bundle_handler_ctocpp.h"
|
|
|
|
|
|
|
|
// VIRTUAL METHODS - Body may be edited by hand.
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2017-05-17 11:29:28 +02:00
|
|
|
void CefAppCToCpp::OnBeforeCommandLineProcessing(
|
|
|
|
const CefString& process_type,
|
2012-04-03 03:34:16 +02:00
|
|
|
CefRefPtr<CefCommandLine> command_line) {
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_app_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_before_command_line_processing))
|
2012-04-03 03:34:16 +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;
|
|
|
|
// Unverified params: process_type
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
_struct->on_before_command_line_processing(
|
|
|
|
_struct, process_type.GetStruct(),
|
2012-04-03 03:34:16 +02:00
|
|
|
CefCommandLineCppToC::Wrap(command_line));
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2012-04-24 20:01:48 +02:00
|
|
|
void CefAppCToCpp::OnRegisterCustomSchemes(
|
2017-02-07 22:25:11 +01:00
|
|
|
CefRawPtr<CefSchemeRegistrar> registrar) {
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_app_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_register_custom_schemes))
|
2012-04-24 20:01:48 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
2017-02-07 22:25:11 +01:00
|
|
|
// Verify param: registrar; type: rawptr_diff
|
|
|
|
DCHECK(registrar);
|
|
|
|
if (!registrar)
|
2012-04-24 20:01:48 +02:00
|
|
|
return;
|
|
|
|
|
2017-02-07 22:25:11 +01:00
|
|
|
// Translate param: registrar; type: rawptr_diff
|
|
|
|
CefOwnPtr<CefSchemeRegistrarCppToC> registrarPtr(
|
|
|
|
CefSchemeRegistrarCppToC::WrapRaw(registrar));
|
|
|
|
|
2012-04-24 20:01:48 +02:00
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
_struct->on_register_custom_schemes(_struct, registrarPtr->GetStruct());
|
2012-04-24 20:01:48 +02:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2012-06-19 18:29:49 +02:00
|
|
|
CefRefPtr<CefResourceBundleHandler> CefAppCToCpp::GetResourceBundleHandler() {
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_app_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_resource_bundle_handler))
|
2012-04-03 03:34:16 +02:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_resource_bundle_handler_t* _retval =
|
|
|
|
_struct->get_resource_bundle_handler(_struct);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Return type: refptr_same
|
2012-06-19 18:29:49 +02:00
|
|
|
return CefResourceBundleHandlerCToCpp::Wrap(_retval);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2012-06-19 18:29:49 +02:00
|
|
|
CefRefPtr<CefBrowserProcessHandler> CefAppCToCpp::GetBrowserProcessHandler() {
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_app_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_browser_process_handler))
|
2012-04-03 03:34:16 +02:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_browser_process_handler_t* _retval =
|
|
|
|
_struct->get_browser_process_handler(_struct);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Return type: refptr_same
|
2012-06-19 18:29:49 +02:00
|
|
|
return CefBrowserProcessHandlerCToCpp::Wrap(_retval);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2012-06-19 18:29:49 +02:00
|
|
|
CefRefPtr<CefRenderProcessHandler> CefAppCToCpp::GetRenderProcessHandler() {
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_app_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_render_process_handler))
|
2012-04-03 03:34:16 +02:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_render_process_handler_t* _retval =
|
|
|
|
_struct->get_render_process_handler(_struct);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Return type: refptr_same
|
2012-06-19 18:29:49 +02:00
|
|
|
return CefRenderProcessHandlerCToCpp::Wrap(_retval);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
CefAppCToCpp::CefAppCToCpp() {}
|
2015-04-26 20:40:01 +02:00
|
|
|
|
2019-01-23 16:42:12 +01:00
|
|
|
// DESTRUCTOR - Do not edit by hand.
|
|
|
|
|
|
|
|
CefAppCToCpp::~CefAppCToCpp() {}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
cef_app_t* CefCToCppRefCounted<CefAppCToCpp, CefApp, cef_app_t>::UnwrapDerived(
|
|
|
|
CefWrapperType type,
|
|
|
|
CefApp* c) {
|
2015-04-26 20:40:01 +02:00
|
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefWrapperType
|
|
|
|
CefCToCppRefCounted<CefAppCToCpp, CefApp, cef_app_t>::kWrapperType = WT_APP;
|