| Index: content/public/browser/content_browser_client.cc
|
| diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc
|
| index 712fd38cb43526d9790617ea0364326a7d81a14a..7b9a8e371404a481b3abfb36d3457452294d9ae3 100644
|
| --- a/content/public/browser/content_browser_client.cc
|
| +++ b/content/public/browser/content_browser_client.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/files/file_path.h"
|
| #include "base/guid.h"
|
| +#include "base/logging.h"
|
| #include "build/build_config.h"
|
| #include "content/public/browser/client_certificate_delegate.h"
|
| #include "content/public/browser/memory_coordinator_delegate.h"
|
| @@ -222,10 +223,12 @@ QuotaPermissionContext* ContentBrowserClient::CreateQuotaPermissionContext() {
|
| return nullptr;
|
| }
|
|
|
| -std::unique_ptr<storage::QuotaEvictionPolicy>
|
| -ContentBrowserClient::GetTemporaryStorageEvictionPolicy(
|
| - content::BrowserContext* context) {
|
| - return std::unique_ptr<storage::QuotaEvictionPolicy>();
|
| +void ContentBrowserClient::GetQuotaSettings(
|
| + BrowserContext* context,
|
| + StoragePartition* partition,
|
| + const storage::OptionalQuotaSettingsCallback& callback) {
|
| + // By default, no quota is provided, embedders should override.
|
| + callback.Run(storage::GetNoQuotaSettings());
|
| }
|
|
|
| void ContentBrowserClient::SelectClientCertificate(
|
|
|