| Index: content/shell/browser/shell_content_browser_client.cc
|
| diff --git a/content/shell/browser/shell_content_browser_client.cc b/content/shell/browser/shell_content_browser_client.cc
|
| index 6fa4cb14cf772bfc0fb2008d819ba0d78ce706d0..22fe6eb2eb21db97275783ce782730f3916c81ad 100644
|
| --- a/content/shell/browser/shell_content_browser_client.cc
|
| +++ b/content/shell/browser/shell_content_browser_client.cc
|
| @@ -39,6 +39,7 @@
|
| #include "content/shell/common/shell_switches.h"
|
| #include "grit/shell_resources.h"
|
| #include "net/url_request/url_request_context_getter.h"
|
| +#include "storage/browser/quota/quota_settings.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| #include "url/gurl.h"
|
| #include "url/origin.h"
|
| @@ -276,6 +277,14 @@ ShellContentBrowserClient::CreateQuotaPermissionContext() {
|
| return new ShellQuotaPermissionContext();
|
| }
|
|
|
| +void ShellContentBrowserClient::GetQuotaSettings(
|
| + BrowserContext* context,
|
| + const base::FilePath& partition_path,
|
| + bool is_incognito,
|
| + const storage::OptionalQuotaSettingsCallback& callback) {
|
| + callback.Run(storage::GetHardCodedSettings(100 * 1024 * 1024));
|
| +}
|
| +
|
| void ShellContentBrowserClient::SelectClientCertificate(
|
| WebContents* web_contents,
|
| net::SSLCertRequestInfo* cert_request_info,
|
|
|