mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-28 10:09:25 +01:00
76642ccafa
The Chrome runtime requires that cookieable scheme information be available at Profile initialization time because it also triggers NetworkContext creation at the same time. To make this possible, and to avoid various race conditions when setting state, the cookieable scheme configuration has been added as |cookieable_schemes_list| and |cookieable_schemes_exclude_defaults| in CefSettings and CefBrowserContextSettings. The CefCookieManager:: SetSupportedSchemes and CefBrowserProcessHandler::GetCookieableSchemes methods are no longer required and have been removed. This change also modifies chrome to delay OffTheRecordProfileImpl initialization so that |ChromeBrowserContext::profile_| can be set before ChromeContentBrowserClientCef::ConfigureNetworkContextParams calls CefBrowserContext::FromBrowserContext to retrieve the ChromeBrowserContext and associated cookieable scheme information. Otherwise, the ChromeBrowserContext will not be matched and the NetworkContext will not be configured correctly. The CookieTest suite now passes with the Chrome runtime enabled.
180 lines
5.3 KiB
C++
180 lines
5.3 KiB
C++
// Copyright (c) 2021 The Chromium Embedded Framework Authors. All rights
|
|
// 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.
|
|
//
|
|
// $hash=2682019770bd002410e9e292747e861c907d3c0c$
|
|
//
|
|
|
|
#include "libcef_dll/ctocpp/cookie_manager_ctocpp.h"
|
|
#include "libcef_dll/cpptoc/completion_callback_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/cookie_visitor_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/delete_cookies_callback_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/set_cookie_callback_cpptoc.h"
|
|
|
|
// STATIC METHODS - Body may be edited by hand.
|
|
|
|
NO_SANITIZE("cfi-icall")
|
|
CefRefPtr<CefCookieManager> CefCookieManager::GetGlobalManager(
|
|
CefRefPtr<CefCompletionCallback> callback) {
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Unverified params: callback
|
|
|
|
// Execute
|
|
cef_cookie_manager_t* _retval = cef_cookie_manager_get_global_manager(
|
|
CefCompletionCallbackCppToC::Wrap(callback));
|
|
|
|
// Return type: refptr_same
|
|
return CefCookieManagerCToCpp::Wrap(_retval);
|
|
}
|
|
|
|
// VIRTUAL METHODS - Body may be edited by hand.
|
|
|
|
NO_SANITIZE("cfi-icall")
|
|
bool CefCookieManagerCToCpp::VisitAllCookies(
|
|
CefRefPtr<CefCookieVisitor> visitor) {
|
|
cef_cookie_manager_t* _struct = GetStruct();
|
|
if (CEF_MEMBER_MISSING(_struct, visit_all_cookies))
|
|
return false;
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Verify param: visitor; type: refptr_diff
|
|
DCHECK(visitor.get());
|
|
if (!visitor.get())
|
|
return false;
|
|
|
|
// Execute
|
|
int _retval = _struct->visit_all_cookies(
|
|
_struct, CefCookieVisitorCppToC::Wrap(visitor));
|
|
|
|
// Return type: bool
|
|
return _retval ? true : false;
|
|
}
|
|
|
|
NO_SANITIZE("cfi-icall")
|
|
bool CefCookieManagerCToCpp::VisitUrlCookies(
|
|
const CefString& url,
|
|
bool includeHttpOnly,
|
|
CefRefPtr<CefCookieVisitor> visitor) {
|
|
cef_cookie_manager_t* _struct = GetStruct();
|
|
if (CEF_MEMBER_MISSING(_struct, visit_url_cookies))
|
|
return false;
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Verify param: url; type: string_byref_const
|
|
DCHECK(!url.empty());
|
|
if (url.empty())
|
|
return false;
|
|
// Verify param: visitor; type: refptr_diff
|
|
DCHECK(visitor.get());
|
|
if (!visitor.get())
|
|
return false;
|
|
|
|
// Execute
|
|
int _retval =
|
|
_struct->visit_url_cookies(_struct, url.GetStruct(), includeHttpOnly,
|
|
CefCookieVisitorCppToC::Wrap(visitor));
|
|
|
|
// Return type: bool
|
|
return _retval ? true : false;
|
|
}
|
|
|
|
NO_SANITIZE("cfi-icall")
|
|
bool CefCookieManagerCToCpp::SetCookie(
|
|
const CefString& url,
|
|
const CefCookie& cookie,
|
|
CefRefPtr<CefSetCookieCallback> callback) {
|
|
cef_cookie_manager_t* _struct = GetStruct();
|
|
if (CEF_MEMBER_MISSING(_struct, set_cookie))
|
|
return false;
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Verify param: url; type: string_byref_const
|
|
DCHECK(!url.empty());
|
|
if (url.empty())
|
|
return false;
|
|
// Unverified params: callback
|
|
|
|
// Execute
|
|
int _retval = _struct->set_cookie(_struct, url.GetStruct(), &cookie,
|
|
CefSetCookieCallbackCppToC::Wrap(callback));
|
|
|
|
// Return type: bool
|
|
return _retval ? true : false;
|
|
}
|
|
|
|
NO_SANITIZE("cfi-icall")
|
|
bool CefCookieManagerCToCpp::DeleteCookies(
|
|
const CefString& url,
|
|
const CefString& cookie_name,
|
|
CefRefPtr<CefDeleteCookiesCallback> callback) {
|
|
cef_cookie_manager_t* _struct = GetStruct();
|
|
if (CEF_MEMBER_MISSING(_struct, delete_cookies))
|
|
return false;
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Unverified params: url, cookie_name, callback
|
|
|
|
// Execute
|
|
int _retval =
|
|
_struct->delete_cookies(_struct, url.GetStruct(), cookie_name.GetStruct(),
|
|
CefDeleteCookiesCallbackCppToC::Wrap(callback));
|
|
|
|
// Return type: bool
|
|
return _retval ? true : false;
|
|
}
|
|
|
|
NO_SANITIZE("cfi-icall")
|
|
bool CefCookieManagerCToCpp::FlushStore(
|
|
CefRefPtr<CefCompletionCallback> callback) {
|
|
cef_cookie_manager_t* _struct = GetStruct();
|
|
if (CEF_MEMBER_MISSING(_struct, flush_store))
|
|
return false;
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
// Unverified params: callback
|
|
|
|
// Execute
|
|
int _retval = _struct->flush_store(
|
|
_struct, CefCompletionCallbackCppToC::Wrap(callback));
|
|
|
|
// Return type: bool
|
|
return _retval ? true : false;
|
|
}
|
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
CefCookieManagerCToCpp::CefCookieManagerCToCpp() {}
|
|
|
|
// DESTRUCTOR - Do not edit by hand.
|
|
|
|
CefCookieManagerCToCpp::~CefCookieManagerCToCpp() {}
|
|
|
|
template <>
|
|
cef_cookie_manager_t*
|
|
CefCToCppRefCounted<CefCookieManagerCToCpp,
|
|
CefCookieManager,
|
|
cef_cookie_manager_t>::UnwrapDerived(CefWrapperType type,
|
|
CefCookieManager* c) {
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
|
return nullptr;
|
|
}
|
|
|
|
template <>
|
|
CefWrapperType CefCToCppRefCounted<CefCookieManagerCToCpp,
|
|
CefCookieManager,
|
|
cef_cookie_manager_t>::kWrapperType =
|
|
WT_COOKIE_MANAGER;
|