mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium revision a106f0ab (#464641)
- Remove CefWindowInfo.transparent_painting_enabled. Set CefBrowserSettings.background_color to an opaque or transparent value instead.
This commit is contained in:
@@ -11,6 +11,10 @@ CefStoragePartitionProxy::CefStoragePartitionProxy(
|
||||
url_request_context_(url_request_context) {
|
||||
}
|
||||
|
||||
CefStoragePartitionProxy::~CefStoragePartitionProxy() {
|
||||
url_request_context_->ShutdownOnUIThread();
|
||||
}
|
||||
|
||||
base::FilePath CefStoragePartitionProxy::GetPath() {
|
||||
return parent_->GetPath();
|
||||
}
|
||||
@@ -76,6 +80,11 @@ CefStoragePartitionProxy::GetPlatformNotificationContext() {
|
||||
return parent_->GetPlatformNotificationContext();
|
||||
}
|
||||
|
||||
content::BackgroundFetchContext*
|
||||
CefStoragePartitionProxy::GetBackgroundFetchContext() {
|
||||
return parent_->GetBackgroundFetchContext();
|
||||
}
|
||||
|
||||
content::BackgroundSyncContext*
|
||||
CefStoragePartitionProxy::GetBackgroundSyncContext() {
|
||||
return parent_->GetBackgroundSyncContext();
|
||||
@@ -130,6 +139,14 @@ void CefStoragePartitionProxy::ClearData(
|
||||
cookie_matcher, begin, end, callback);
|
||||
}
|
||||
|
||||
void CefStoragePartitionProxy::ClearHttpAndMediaCaches(
|
||||
const base::Time begin,
|
||||
const base::Time end,
|
||||
const base::Callback<bool(const GURL&)>& url_matcher,
|
||||
const base::Closure& callback) {
|
||||
parent_->ClearHttpAndMediaCaches(begin, end, url_matcher, callback);
|
||||
}
|
||||
|
||||
void CefStoragePartitionProxy::Flush() {
|
||||
parent_->Flush();
|
||||
}
|
||||
|
Reference in New Issue
Block a user