| Index: content/test/test_content_browser_client.cc
|
| diff --git a/content/test/test_content_browser_client.cc b/content/test/test_content_browser_client.cc
|
| index b766e537bbd56138edca58046d000241fa372829..52a7ba6f58424fc6865ca39ce0e6c4bf49937481 100644
|
| --- a/content/test/test_content_browser_client.cc
|
| +++ b/content/test/test_content_browser_client.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/files/file_path.h"
|
| #include "base/logging.h"
|
| +#include "storage/browser/quota/quota_settings.h"
|
|
|
| namespace content {
|
|
|
| @@ -23,4 +24,11 @@ base::FilePath TestContentBrowserClient::GetDefaultDownloadDirectory() {
|
| return download_dir_.GetPath();
|
| }
|
|
|
| +void TestContentBrowserClient::GetQuotaSettings(
|
| + BrowserContext* context,
|
| + StoragePartition* partition,
|
| + const storage::OptionalQuotaSettingsCallback& callback) {
|
| + callback.Run(storage::GetHardCodedSettings(100 * 1024 * 1024));
|
| +}
|
| +
|
| } // namespace content
|
|
|