2016-01-08 20:00:27 +01:00
|
|
|
// Copyright (c) 2016 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.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "libcef_dll/cpptoc/cookie_manager_cpptoc.h"
|
2015-09-09 16:05:39 +02:00
|
|
|
#include "libcef_dll/cpptoc/web_plugin_info_cpptoc.h"
|
2014-01-06 20:48:18 +01:00
|
|
|
#include "libcef_dll/ctocpp/request_context_handler_ctocpp.h"
|
|
|
|
|
|
|
|
|
|
|
|
// VIRTUAL METHODS - Body may be edited by hand.
|
|
|
|
|
|
|
|
CefRefPtr<CefCookieManager> CefRequestContextHandlerCToCpp::GetCookieManager() {
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_request_context_handler_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_cookie_manager))
|
2014-01-06 20:48:18 +01:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Execute
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_cookie_manager_t* _retval = _struct->get_cookie_manager(_struct);
|
2014-01-06 20:48:18 +01:00
|
|
|
|
|
|
|
// Return type: refptr_diff
|
|
|
|
return CefCookieManagerCppToC::Unwrap(_retval);
|
|
|
|
}
|
|
|
|
|
2015-09-09 16:05:39 +02:00
|
|
|
bool CefRequestContextHandlerCToCpp::OnBeforePluginLoad(
|
|
|
|
const CefString& mime_type, const CefString& plugin_url,
|
|
|
|
const CefString& top_origin_url, CefRefPtr<CefWebPluginInfo> plugin_info,
|
|
|
|
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
|
|
|
|
int _retval = _struct->on_before_plugin_load(_struct,
|
|
|
|
mime_type.GetStruct(),
|
|
|
|
plugin_url.GetStruct(),
|
|
|
|
top_origin_url.GetStruct(),
|
|
|
|
CefWebPluginInfoCppToC::Wrap(plugin_info),
|
|
|
|
plugin_policy);
|
|
|
|
|
|
|
|
// Return type: bool
|
|
|
|
return _retval?true:false;
|
|
|
|
}
|
|
|
|
|
2014-01-06 20:48:18 +01:00
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
|
|
|
CefRequestContextHandlerCToCpp::CefRequestContextHandlerCToCpp() {
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> cef_request_context_handler_t* CefCToCpp<CefRequestContextHandlerCToCpp,
|
|
|
|
CefRequestContextHandler, cef_request_context_handler_t>::UnwrapDerived(
|
|
|
|
CefWrapperType type, CefRequestContextHandler* c) {
|
|
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-01-06 20:48:18 +01:00
|
|
|
#ifndef NDEBUG
|
2014-07-15 00:18:51 +02:00
|
|
|
template<> base::AtomicRefCount CefCToCpp<CefRequestContextHandlerCToCpp,
|
2014-01-06 20:48:18 +01:00
|
|
|
CefRequestContextHandler, cef_request_context_handler_t>::DebugObjCt = 0;
|
|
|
|
#endif
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
template<> CefWrapperType CefCToCpp<CefRequestContextHandlerCToCpp,
|
|
|
|
CefRequestContextHandler, cef_request_context_handler_t>::kWrapperType =
|
|
|
|
WT_REQUEST_CONTEXT_HANDLER;
|