| 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 7c7613ff3d0749293768233c8c202ce30a9bb78b..fd8b569b9339db3da12e8e2c320f32454e375fc5 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"
|
| @@ -292,6 +293,13 @@ ShellContentBrowserClient::CreateQuotaPermissionContext() {
|
| return new ShellQuotaPermissionContext();
|
| }
|
|
|
| +void ShellContentBrowserClient::GetQuotaSettings(
|
| + BrowserContext* context,
|
| + StoragePartition* partition,
|
| + const storage::OptionalQuotaSettingsCallback& callback) {
|
| + callback.Run(storage::GetHardCodedSettings(100 * 1024 * 1024));
|
| +}
|
| +
|
| void ShellContentBrowserClient::SelectClientCertificate(
|
| WebContents* web_contents,
|
| net::SSLCertRequestInfo* cert_request_info,
|
|
|