diff --git a/libcef/browser/content_browser_client.cc b/libcef/browser/content_browser_client.cc index 8fd56f513..501c5d2bd 100644 --- a/libcef/browser/content_browser_client.cc +++ b/libcef/browser/content_browser_client.cc @@ -797,8 +797,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() {