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-02-18 21:43:30 +01:00
|
|
|
// $hash=4e9587e1eaf8aef5f0457537b70ebcc3ee68c449$
|
2017-05-17 11:29:28 +02:00
|
|
|
//
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
#include "libcef_dll/cpptoc/request_handler_cpptoc.h"
|
2019-04-24 04:50:25 +02:00
|
|
|
#include "libcef_dll/cpptoc/resource_request_handler_cpptoc.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "libcef_dll/ctocpp/auth_callback_ctocpp.h"
|
|
|
|
#include "libcef_dll/ctocpp/browser_ctocpp.h"
|
2021-09-27 11:09:45 +02:00
|
|
|
#include "libcef_dll/ctocpp/callback_ctocpp.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "libcef_dll/ctocpp/frame_ctocpp.h"
|
2017-05-17 11:29:28 +02:00
|
|
|
#include "libcef_dll/ctocpp/request_ctocpp.h"
|
2016-10-27 19:57:12 +02:00
|
|
|
#include "libcef_dll/ctocpp/select_client_certificate_callback_ctocpp.h"
|
2017-05-17 11:29:28 +02:00
|
|
|
#include "libcef_dll/ctocpp/sslinfo_ctocpp.h"
|
2016-10-27 19:57:12 +02:00
|
|
|
#include "libcef_dll/ctocpp/x509certificate_ctocpp.h"
|
2019-01-23 16:42:12 +01:00
|
|
|
#include "libcef_dll/shutdown_checker.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
|
|
|
int CEF_CALLBACK
|
|
|
|
request_handler_on_before_browse(struct _cef_request_handler_t* self,
|
|
|
|
cef_browser_t* browser,
|
|
|
|
cef_frame_t* frame,
|
|
|
|
cef_request_t* request,
|
2018-04-27 17:11:53 +02:00
|
|
|
int user_gesture,
|
2017-05-17 11:29:28 +02:00
|
|
|
int is_redirect) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2013-09-12 19:44:54 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return 0;
|
|
|
|
// Verify param: browser; type: refptr_diff
|
|
|
|
DCHECK(browser);
|
|
|
|
if (!browser)
|
|
|
|
return 0;
|
|
|
|
// Verify param: frame; type: refptr_diff
|
|
|
|
DCHECK(frame);
|
|
|
|
if (!frame)
|
|
|
|
return 0;
|
|
|
|
// Verify param: request; type: refptr_diff
|
|
|
|
DCHECK(request);
|
|
|
|
if (!request)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
bool _retval = CefRequestHandlerCppToC::Get(self)->OnBeforeBrowse(
|
2017-05-17 11:29:28 +02:00
|
|
|
CefBrowserCToCpp::Wrap(browser), CefFrameCToCpp::Wrap(frame),
|
2018-04-27 17:11:53 +02:00
|
|
|
CefRequestCToCpp::Wrap(request), user_gesture ? true : false,
|
|
|
|
is_redirect ? true : false);
|
2013-09-12 19:44:54 +02:00
|
|
|
|
|
|
|
// Return type: bool
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2015-03-09 21:22:31 +01:00
|
|
|
int CEF_CALLBACK request_handler_on_open_urlfrom_tab(
|
2017-05-17 11:29:28 +02:00
|
|
|
struct _cef_request_handler_t* self,
|
|
|
|
cef_browser_t* browser,
|
|
|
|
cef_frame_t* frame,
|
|
|
|
const cef_string_t* target_url,
|
|
|
|
cef_window_open_disposition_t target_disposition,
|
|
|
|
int user_gesture) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2015-03-09 21:22:31 +01:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return 0;
|
|
|
|
// Verify param: browser; type: refptr_diff
|
|
|
|
DCHECK(browser);
|
|
|
|
if (!browser)
|
|
|
|
return 0;
|
|
|
|
// Verify param: frame; type: refptr_diff
|
|
|
|
DCHECK(frame);
|
|
|
|
if (!frame)
|
|
|
|
return 0;
|
|
|
|
// Verify param: target_url; type: string_byref_const
|
|
|
|
DCHECK(target_url);
|
|
|
|
if (!target_url)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
bool _retval = CefRequestHandlerCppToC::Get(self)->OnOpenURLFromTab(
|
2017-05-17 11:29:28 +02:00
|
|
|
CefBrowserCToCpp::Wrap(browser), CefFrameCToCpp::Wrap(frame),
|
|
|
|
CefString(target_url), target_disposition, user_gesture ? true : false);
|
2015-03-09 21:22:31 +01:00
|
|
|
|
|
|
|
// Return type: bool
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2019-04-24 04:50:25 +02:00
|
|
|
struct _cef_resource_request_handler_t* CEF_CALLBACK
|
|
|
|
request_handler_get_resource_request_handler(
|
2017-05-17 11:29:28 +02:00
|
|
|
struct _cef_request_handler_t* self,
|
|
|
|
cef_browser_t* browser,
|
|
|
|
cef_frame_t* frame,
|
|
|
|
cef_request_t* request,
|
2019-04-24 04:50:25 +02:00
|
|
|
int is_navigation,
|
|
|
|
int is_download,
|
|
|
|
const cef_string_t* request_initiator,
|
|
|
|
int* disable_default_handling) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2015-12-05 03:58:56 +01:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return NULL;
|
|
|
|
// Verify param: browser; type: refptr_diff
|
|
|
|
DCHECK(browser);
|
|
|
|
if (!browser)
|
|
|
|
return NULL;
|
|
|
|
// Verify param: frame; type: refptr_diff
|
|
|
|
DCHECK(frame);
|
|
|
|
if (!frame)
|
|
|
|
return NULL;
|
|
|
|
// Verify param: request; type: refptr_diff
|
|
|
|
DCHECK(request);
|
|
|
|
if (!request)
|
|
|
|
return NULL;
|
2019-04-24 04:50:25 +02:00
|
|
|
// Verify param: disable_default_handling; type: bool_byref
|
|
|
|
DCHECK(disable_default_handling);
|
|
|
|
if (!disable_default_handling)
|
2015-12-05 03:58:56 +01:00
|
|
|
return NULL;
|
2019-04-24 04:50:25 +02:00
|
|
|
// Unverified params: request_initiator
|
|
|
|
|
|
|
|
// Translate param: disable_default_handling; type: bool_byref
|
|
|
|
bool disable_default_handlingBool =
|
|
|
|
(disable_default_handling && *disable_default_handling) ? true : false;
|
2015-12-05 03:58:56 +01:00
|
|
|
|
|
|
|
// Execute
|
2019-04-24 04:50:25 +02:00
|
|
|
CefRefPtr<CefResourceRequestHandler> _retval =
|
|
|
|
CefRequestHandlerCppToC::Get(self)->GetResourceRequestHandler(
|
2017-05-17 11:29:28 +02:00
|
|
|
CefBrowserCToCpp::Wrap(browser), CefFrameCToCpp::Wrap(frame),
|
2019-04-24 04:50:25 +02:00
|
|
|
CefRequestCToCpp::Wrap(request), is_navigation ? true : false,
|
|
|
|
is_download ? true : false, CefString(request_initiator),
|
|
|
|
disable_default_handlingBool);
|
2015-12-05 03:58:56 +01:00
|
|
|
|
2019-04-24 04:50:25 +02:00
|
|
|
// Restore param: disable_default_handling; type: bool_byref
|
|
|
|
if (disable_default_handling)
|
|
|
|
*disable_default_handling = disable_default_handlingBool ? true : false;
|
2019-01-23 16:42:12 +01:00
|
|
|
|
2019-04-24 04:50:25 +02:00
|
|
|
// Return type: refptr_same
|
|
|
|
return CefResourceRequestHandlerCppToC::Wrap(_retval);
|
2015-12-04 19:59:14 +01:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
int CEF_CALLBACK
|
|
|
|
request_handler_get_auth_credentials(struct _cef_request_handler_t* self,
|
|
|
|
cef_browser_t* browser,
|
2019-07-12 22:44:43 +02:00
|
|
|
const cef_string_t* origin_url,
|
2017-05-17 11:29:28 +02:00
|
|
|
int isProxy,
|
|
|
|
const cef_string_t* host,
|
|
|
|
int port,
|
|
|
|
const cef_string_t* realm,
|
|
|
|
const cef_string_t* scheme,
|
|
|
|
cef_auth_callback_t* callback) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return 0;
|
|
|
|
// Verify param: browser; type: refptr_diff
|
|
|
|
DCHECK(browser);
|
|
|
|
if (!browser)
|
|
|
|
return 0;
|
2019-07-12 22:44:43 +02:00
|
|
|
// Verify param: origin_url; type: string_byref_const
|
|
|
|
DCHECK(origin_url);
|
|
|
|
if (!origin_url)
|
2012-04-03 03:34:16 +02:00
|
|
|
return 0;
|
|
|
|
// Verify param: host; type: string_byref_const
|
|
|
|
DCHECK(host);
|
|
|
|
if (!host)
|
|
|
|
return 0;
|
|
|
|
// Verify param: callback; type: refptr_diff
|
|
|
|
DCHECK(callback);
|
|
|
|
if (!callback)
|
|
|
|
return 0;
|
2015-12-17 19:24:14 +01:00
|
|
|
// Unverified params: realm, scheme
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Execute
|
|
|
|
bool _retval = CefRequestHandlerCppToC::Get(self)->GetAuthCredentials(
|
2019-07-12 22:44:43 +02:00
|
|
|
CefBrowserCToCpp::Wrap(browser), CefString(origin_url),
|
2017-05-17 11:29:28 +02:00
|
|
|
isProxy ? true : false, CefString(host), port, CefString(realm),
|
|
|
|
CefString(scheme), CefAuthCallbackCToCpp::Wrap(callback));
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Return type: bool
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
int CEF_CALLBACK
|
|
|
|
request_handler_on_quota_request(struct _cef_request_handler_t* self,
|
|
|
|
cef_browser_t* browser,
|
|
|
|
const cef_string_t* origin_url,
|
|
|
|
int64 new_size,
|
2021-09-27 11:09:45 +02:00
|
|
|
cef_callback_t* callback) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2012-09-28 00:52:15 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return 0;
|
|
|
|
// Verify param: browser; type: refptr_diff
|
|
|
|
DCHECK(browser);
|
|
|
|
if (!browser)
|
|
|
|
return 0;
|
|
|
|
// Verify param: origin_url; type: string_byref_const
|
|
|
|
DCHECK(origin_url);
|
|
|
|
if (!origin_url)
|
|
|
|
return 0;
|
|
|
|
// Verify param: callback; type: refptr_diff
|
|
|
|
DCHECK(callback);
|
|
|
|
if (!callback)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
bool _retval = CefRequestHandlerCppToC::Get(self)->OnQuotaRequest(
|
2017-05-17 11:29:28 +02:00
|
|
|
CefBrowserCToCpp::Wrap(browser), CefString(origin_url), new_size,
|
2021-09-27 11:09:45 +02:00
|
|
|
CefCallbackCToCpp::Wrap(callback));
|
2012-09-28 00:52:15 +02:00
|
|
|
|
|
|
|
// Return type: bool
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
int CEF_CALLBACK
|
|
|
|
request_handler_on_certificate_error(struct _cef_request_handler_t* self,
|
|
|
|
cef_browser_t* browser,
|
|
|
|
cef_errorcode_t cert_error,
|
|
|
|
const cef_string_t* request_url,
|
|
|
|
struct _cef_sslinfo_t* ssl_info,
|
2021-09-27 11:09:45 +02:00
|
|
|
cef_callback_t* callback) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2013-09-12 22:34:18 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return 0;
|
2015-02-11 19:15:04 +01:00
|
|
|
// Verify param: browser; type: refptr_diff
|
|
|
|
DCHECK(browser);
|
|
|
|
if (!browser)
|
|
|
|
return 0;
|
2013-09-12 22:34:18 +02:00
|
|
|
// Verify param: request_url; type: string_byref_const
|
|
|
|
DCHECK(request_url);
|
|
|
|
if (!request_url)
|
|
|
|
return 0;
|
2015-02-11 19:15:04 +01:00
|
|
|
// Verify param: ssl_info; type: refptr_diff
|
|
|
|
DCHECK(ssl_info);
|
|
|
|
if (!ssl_info)
|
|
|
|
return 0;
|
2013-09-12 22:34:18 +02:00
|
|
|
// Verify param: callback; type: refptr_diff
|
|
|
|
DCHECK(callback);
|
|
|
|
if (!callback)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
bool _retval = CefRequestHandlerCppToC::Get(self)->OnCertificateError(
|
2017-05-17 11:29:28 +02:00
|
|
|
CefBrowserCToCpp::Wrap(browser), cert_error, CefString(request_url),
|
2021-09-27 11:09:45 +02:00
|
|
|
CefSSLInfoCToCpp::Wrap(ssl_info), CefCallbackCToCpp::Wrap(callback));
|
2013-09-12 22:34:18 +02:00
|
|
|
|
|
|
|
// Return type: bool
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2016-10-27 19:57:12 +02:00
|
|
|
int CEF_CALLBACK request_handler_on_select_client_certificate(
|
2017-05-17 11:29:28 +02:00
|
|
|
struct _cef_request_handler_t* self,
|
|
|
|
cef_browser_t* browser,
|
|
|
|
int isProxy,
|
|
|
|
const cef_string_t* host,
|
|
|
|
int port,
|
|
|
|
size_t certificatesCount,
|
2016-10-27 19:57:12 +02:00
|
|
|
struct _cef_x509certificate_t* const* certificates,
|
|
|
|
cef_select_client_certificate_callback_t* callback) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2016-10-27 19:57:12 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return 0;
|
|
|
|
// Verify param: browser; type: refptr_diff
|
|
|
|
DCHECK(browser);
|
|
|
|
if (!browser)
|
|
|
|
return 0;
|
|
|
|
// Verify param: host; type: string_byref_const
|
|
|
|
DCHECK(host);
|
|
|
|
if (!host)
|
|
|
|
return 0;
|
|
|
|
// Verify param: certificates; type: refptr_vec_diff_byref_const
|
|
|
|
DCHECK(certificatesCount == 0 || certificates);
|
|
|
|
if (certificatesCount > 0 && !certificates)
|
|
|
|
return 0;
|
|
|
|
// Verify param: callback; type: refptr_diff
|
|
|
|
DCHECK(callback);
|
|
|
|
if (!callback)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Translate param: certificates; type: refptr_vec_diff_byref_const
|
2017-05-17 11:29:28 +02:00
|
|
|
std::vector<CefRefPtr<CefX509Certificate>> certificatesList;
|
2016-10-27 19:57:12 +02:00
|
|
|
if (certificatesCount > 0) {
|
|
|
|
for (size_t i = 0; i < certificatesCount; ++i) {
|
|
|
|
CefRefPtr<CefX509Certificate> certificatesVal =
|
|
|
|
CefX509CertificateCToCpp::Wrap(certificates[i]);
|
|
|
|
certificatesList.push_back(certificatesVal);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
bool _retval = CefRequestHandlerCppToC::Get(self)->OnSelectClientCertificate(
|
2017-05-17 11:29:28 +02:00
|
|
|
CefBrowserCToCpp::Wrap(browser), isProxy ? true : false, CefString(host),
|
|
|
|
port, certificatesList,
|
2016-10-27 19:57:12 +02:00
|
|
|
CefSelectClientCertificateCallbackCToCpp::Wrap(callback));
|
|
|
|
|
|
|
|
// Return type: bool
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
void CEF_CALLBACK
|
|
|
|
request_handler_on_render_view_ready(struct _cef_request_handler_t* self,
|
|
|
|
cef_browser_t* browser) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2015-03-09 22:05:22 +01:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return;
|
|
|
|
// Verify param: browser; type: refptr_diff
|
|
|
|
DCHECK(browser);
|
|
|
|
if (!browser)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefRequestHandlerCppToC::Get(self)->OnRenderViewReady(
|
|
|
|
CefBrowserCToCpp::Wrap(browser));
|
|
|
|
}
|
|
|
|
|
2013-09-12 22:34:18 +02:00
|
|
|
void CEF_CALLBACK request_handler_on_render_process_terminated(
|
2017-05-17 11:29:28 +02:00
|
|
|
struct _cef_request_handler_t* self,
|
|
|
|
cef_browser_t* browser,
|
2014-01-06 20:59:48 +01:00
|
|
|
cef_termination_status_t status) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2013-09-12 22:34:18 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return;
|
|
|
|
// Verify param: browser; type: refptr_diff
|
|
|
|
DCHECK(browser);
|
|
|
|
if (!browser)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefRequestHandlerCppToC::Get(self)->OnRenderProcessTerminated(
|
2017-05-17 11:29:28 +02:00
|
|
|
CefBrowserCToCpp::Wrap(browser), status);
|
2013-04-04 19:50:35 +02:00
|
|
|
}
|
|
|
|
|
2020-06-13 02:54:08 +02:00
|
|
|
void CEF_CALLBACK request_handler_on_document_available_in_main_frame(
|
|
|
|
struct _cef_request_handler_t* self,
|
|
|
|
cef_browser_t* browser) {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return;
|
|
|
|
// Verify param: browser; type: refptr_diff
|
|
|
|
DCHECK(browser);
|
|
|
|
if (!browser)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefRequestHandlerCppToC::Get(self)->OnDocumentAvailableInMainFrame(
|
|
|
|
CefBrowserCToCpp::Wrap(browser));
|
|
|
|
}
|
|
|
|
|
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
|
|
|
CefRequestHandlerCppToC::CefRequestHandlerCppToC() {
|
|
|
|
GetStruct()->on_before_browse = request_handler_on_before_browse;
|
|
|
|
GetStruct()->on_open_urlfrom_tab = request_handler_on_open_urlfrom_tab;
|
2019-04-24 04:50:25 +02:00
|
|
|
GetStruct()->get_resource_request_handler =
|
|
|
|
request_handler_get_resource_request_handler;
|
2015-04-26 20:40:01 +02:00
|
|
|
GetStruct()->get_auth_credentials = request_handler_get_auth_credentials;
|
|
|
|
GetStruct()->on_quota_request = request_handler_on_quota_request;
|
|
|
|
GetStruct()->on_certificate_error = request_handler_on_certificate_error;
|
2016-10-27 19:57:12 +02:00
|
|
|
GetStruct()->on_select_client_certificate =
|
|
|
|
request_handler_on_select_client_certificate;
|
2015-04-26 20:40:01 +02:00
|
|
|
GetStruct()->on_render_view_ready = request_handler_on_render_view_ready;
|
|
|
|
GetStruct()->on_render_process_terminated =
|
2013-09-12 22:34:18 +02:00
|
|
|
request_handler_on_render_process_terminated;
|
2020-06-13 02:54:08 +02:00
|
|
|
GetStruct()->on_document_available_in_main_frame =
|
|
|
|
request_handler_on_document_available_in_main_frame;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 16:42:12 +01:00
|
|
|
// DESTRUCTOR - Do not edit by hand.
|
|
|
|
|
|
|
|
CefRequestHandlerCppToC::~CefRequestHandlerCppToC() {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefRefPtr<CefRequestHandler> CefCppToCRefCounted<
|
|
|
|
CefRequestHandlerCppToC,
|
|
|
|
CefRequestHandler,
|
|
|
|
cef_request_handler_t>::UnwrapDerived(CefWrapperType type,
|
|
|
|
cef_request_handler_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;
|
2015-04-26 20:40:01 +02:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefWrapperType CefCppToCRefCounted<CefRequestHandlerCppToC,
|
|
|
|
CefRequestHandler,
|
|
|
|
cef_request_handler_t>::kWrapperType =
|
2017-02-09 23:07:43 +01:00
|
|
|
WT_REQUEST_HANDLER;
|