2019-01-10 15:22:19 +01:00
|
|
|
// Copyright (c) 2019 The Chromium Embedded Framework Authors. All rights
|
2014-01-06 20:48:18 +01: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-04-24 04:50:25 +02:00
|
|
|
// $hash=4427c3dce042fac34640c02c4b07fcf6b5902f34$
|
2017-05-17 11:29:28 +02:00
|
|
|
//
|
2014-01-06 20:48:18 +01:00
|
|
|
|
2017-05-19 11:06:00 +02:00
|
|
|
#include "libcef_dll/ctocpp/request_context_handler_ctocpp.h"
|
2019-04-24 04:50:25 +02:00
|
|
|
#include "libcef_dll/cpptoc/browser_cpptoc.h"
|
|
|
|
#include "libcef_dll/cpptoc/frame_cpptoc.h"
|
2017-08-04 00:55:19 +02:00
|
|
|
#include "libcef_dll/cpptoc/request_context_cpptoc.h"
|
2019-04-24 04:50:25 +02:00
|
|
|
#include "libcef_dll/cpptoc/request_cpptoc.h"
|
2015-09-09 16:05:39 +02:00
|
|
|
#include "libcef_dll/cpptoc/web_plugin_info_cpptoc.h"
|
2019-04-24 04:50:25 +02:00
|
|
|
#include "libcef_dll/ctocpp/resource_request_handler_ctocpp.h"
|
2014-01-06 20:48:18 +01:00
|
|
|
|
|
|
|
// VIRTUAL METHODS - Body may be edited by hand.
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2017-08-04 00:55:19 +02:00
|
|
|
void CefRequestContextHandlerCToCpp::OnRequestContextInitialized(
|
|
|
|
CefRefPtr<CefRequestContext> request_context) {
|
|
|
|
cef_request_context_handler_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_request_context_initialized))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: request_context; type: refptr_diff
|
|
|
|
DCHECK(request_context.get());
|
|
|
|
if (!request_context.get())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
_struct->on_request_context_initialized(
|
|
|
|
_struct, CefRequestContextCppToC::Wrap(request_context));
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:55:56 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
2015-09-09 16:05:39 +02:00
|
|
|
bool CefRequestContextHandlerCToCpp::OnBeforePluginLoad(
|
2017-05-17 11:29:28 +02:00
|
|
|
const CefString& mime_type,
|
|
|
|
const CefString& plugin_url,
|
|
|
|
bool is_main_frame,
|
|
|
|
const CefString& top_origin_url,
|
|
|
|
CefRefPtr<CefWebPluginInfo> plugin_info,
|
2015-09-09 16:05:39 +02:00
|
|
|
PluginPolicy* plugin_policy) {
|
|
|
|
cef_request_context_handler_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, on_before_plugin_load))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: mime_type; type: string_byref_const
|
|
|
|
DCHECK(!mime_type.empty());
|
|
|
|
if (mime_type.empty())
|
|
|
|
return false;
|
|
|
|
// Verify param: plugin_info; type: refptr_diff
|
|
|
|
DCHECK(plugin_info.get());
|
|
|
|
if (!plugin_info.get())
|
|
|
|
return false;
|
|
|
|
// Verify param: plugin_policy; type: simple_byaddr
|
|
|
|
DCHECK(plugin_policy);
|
|
|
|
if (!plugin_policy)
|
|
|
|
return false;
|
2015-09-25 13:59:30 +02:00
|
|
|
// Unverified params: plugin_url, top_origin_url
|
2015-09-09 16:05:39 +02:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
int _retval = _struct->on_before_plugin_load(
|
|
|
|
_struct, mime_type.GetStruct(), plugin_url.GetStruct(), is_main_frame,
|
|
|
|
top_origin_url.GetStruct(), CefWebPluginInfoCppToC::Wrap(plugin_info),
|
2015-09-09 16:05:39 +02:00
|
|
|
plugin_policy);
|
|
|
|
|
|
|
|
// Return type: bool
|
2017-05-17 11:29:28 +02:00
|
|
|
return _retval ? true : false;
|
2015-09-09 16:05:39 +02:00
|
|
|
}
|
|
|
|
|
2019-04-24 04:50:25 +02:00
|
|
|
NO_SANITIZE("cfi-icall")
|
|
|
|
CefRefPtr<CefResourceRequestHandler> CefRequestContextHandlerCToCpp::
|
|
|
|
GetResourceRequestHandler(CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRefPtr<CefFrame> frame,
|
|
|
|
CefRefPtr<CefRequest> request,
|
|
|
|
bool is_navigation,
|
|
|
|
bool is_download,
|
|
|
|
const CefString& request_initiator,
|
|
|
|
bool& disable_default_handling) {
|
|
|
|
cef_request_context_handler_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_resource_request_handler))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: request; type: refptr_diff
|
|
|
|
DCHECK(request.get());
|
|
|
|
if (!request.get())
|
|
|
|
return NULL;
|
|
|
|
// Unverified params: browser, frame, request_initiator
|
|
|
|
|
|
|
|
// Translate param: disable_default_handling; type: bool_byref
|
|
|
|
int disable_default_handlingInt = disable_default_handling;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
cef_resource_request_handler_t* _retval =
|
|
|
|
_struct->get_resource_request_handler(
|
|
|
|
_struct, CefBrowserCppToC::Wrap(browser), CefFrameCppToC::Wrap(frame),
|
|
|
|
CefRequestCppToC::Wrap(request), is_navigation, is_download,
|
|
|
|
request_initiator.GetStruct(), &disable_default_handlingInt);
|
|
|
|
|
|
|
|
// Restore param:disable_default_handling; type: bool_byref
|
|
|
|
disable_default_handling = disable_default_handlingInt ? true : false;
|
|
|
|
|
|
|
|
// Return type: refptr_same
|
|
|
|
return CefResourceRequestHandlerCToCpp::Wrap(_retval);
|
|
|
|
}
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
CefRequestContextHandlerCToCpp::CefRequestContextHandlerCToCpp() {}
|
2015-04-26 20:40:01 +02:00
|
|
|
|
2019-01-23 16:42:12 +01:00
|
|
|
// DESTRUCTOR - Do not edit by hand.
|
|
|
|
|
|
|
|
CefRequestContextHandlerCToCpp::~CefRequestContextHandlerCToCpp() {}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
cef_request_context_handler_t* CefCToCppRefCounted<
|
|
|
|
CefRequestContextHandlerCToCpp,
|
|
|
|
CefRequestContextHandler,
|
|
|
|
cef_request_context_handler_t>::UnwrapDerived(CefWrapperType type,
|
|
|
|
CefRequestContextHandler* 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<CefRequestContextHandlerCToCpp,
|
|
|
|
CefRequestContextHandler,
|
|
|
|
cef_request_context_handler_t>::kWrapperType =
|
|
|
|
WT_REQUEST_CONTEXT_HANDLER;
|