From 07f57223a87f634dbb7ba6b3960251225413b9ac Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Fri, 26 Oct 2018 15:42:39 -0400 Subject: [PATCH] Fix incorrect quota size (issue #2452) --- libcef/browser/content_browser_client.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libcef/browser/content_browser_client.cc b/libcef/browser/content_browser_client.cc index 4fc21bcd5..caec224f9 100644 --- a/libcef/browser/content_browser_client.cc +++ b/libcef/browser/content_browser_client.cc @@ -798,8 +798,8 @@ void CefContentBrowserClient::GetQuotaSettings( content::StoragePartition* partition, storage::OptionalQuotaSettingsCallback callback) { const base::FilePath& cache_path = partition->GetPath(); - storage::GetNominalDynamicSettings(cache_path, !cache_path.empty(), - std::move(callback)); + storage::GetNominalDynamicSettings( + cache_path, cache_path.empty() /* is_incognito */, std::move(callback)); } content::MediaObserver* CefContentBrowserClient::GetMediaObserver() {