Fix incorrect quota size (issue #2452)
This commit is contained in:
parent
315b57e9f7
commit
07f57223a8
|
@ -798,8 +798,8 @@ void CefContentBrowserClient::GetQuotaSettings(
|
||||||
content::StoragePartition* partition,
|
content::StoragePartition* partition,
|
||||||
storage::OptionalQuotaSettingsCallback callback) {
|
storage::OptionalQuotaSettingsCallback callback) {
|
||||||
const base::FilePath& cache_path = partition->GetPath();
|
const base::FilePath& cache_path = partition->GetPath();
|
||||||
storage::GetNominalDynamicSettings(cache_path, !cache_path.empty(),
|
storage::GetNominalDynamicSettings(
|
||||||
std::move(callback));
|
cache_path, cache_path.empty() /* is_incognito */, std::move(callback));
|
||||||
}
|
}
|
||||||
|
|
||||||
content::MediaObserver* CefContentBrowserClient::GetMediaObserver() {
|
content::MediaObserver* CefContentBrowserClient::GetMediaObserver() {
|
||||||
|
|
Loading…
Reference in New Issue