mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 74.0.3706.0 (#632463)
This commit is contained in:
@@ -4,6 +4,8 @@
|
||||
|
||||
#include "libcef/browser/storage_partition_proxy.h"
|
||||
|
||||
#include "services/network/public/mojom/cookie_manager.mojom.h"
|
||||
|
||||
CefStoragePartitionProxy::CefStoragePartitionProxy(
|
||||
content::StoragePartition* parent,
|
||||
CefURLRequestContextGetterProxy* url_request_context)
|
||||
@@ -156,8 +158,12 @@ void CefStoragePartitionProxy::ClearHttpAndMediaCaches(
|
||||
std::move(callback));
|
||||
}
|
||||
|
||||
void CefStoragePartitionProxy::ClearCodeCaches(base::OnceClosure callback) {
|
||||
parent_->ClearCodeCaches(std::move(callback));
|
||||
void CefStoragePartitionProxy::ClearCodeCaches(
|
||||
base::Time begin,
|
||||
base::Time end,
|
||||
const base::RepeatingCallback<bool(const GURL&)>& url_matcher,
|
||||
base::OnceClosure callback) {
|
||||
parent_->ClearCodeCaches(begin, end, url_matcher, std::move(callback));
|
||||
}
|
||||
|
||||
void CefStoragePartitionProxy::Flush() {
|
||||
@@ -218,6 +224,11 @@ content::CookieStoreContext* CefStoragePartitionProxy::GetCookieStoreContext() {
|
||||
return parent_->GetCookieStoreContext();
|
||||
}
|
||||
|
||||
content::DevToolsBackgroundServicesContext*
|
||||
CefStoragePartitionProxy::GetDevToolsBackgroundServicesContext() {
|
||||
return parent_->GetDevToolsBackgroundServicesContext();
|
||||
}
|
||||
|
||||
content::URLLoaderFactoryGetter*
|
||||
CefStoragePartitionProxy::url_loader_factory_getter() {
|
||||
return parent_->url_loader_factory_getter();
|
||||
|
Reference in New Issue
Block a user