| Index: content/shell/browser/layout_test/layout_test_content_browser_client.cc
|
| diff --git a/content/shell/browser/layout_test/layout_test_content_browser_client.cc b/content/shell/browser/layout_test/layout_test_content_browser_client.cc
|
| index f913fdbf38e2858cfb52a902fcf44fc55e6ecbe8..d81473f17eebfd02fecfc9cc37cc686c39d7ab6a 100644
|
| --- a/content/shell/browser/layout_test/layout_test_content_browser_client.cc
|
| +++ b/content/shell/browser/layout_test/layout_test_content_browser_client.cc
|
| @@ -132,7 +132,9 @@ void LayoutTestContentBrowserClient::GetQuotaSettings(
|
| BrowserContext* context,
|
| StoragePartition* partition,
|
| const storage::OptionalQuotaSettingsCallback& callback) {
|
| - callback.Run(storage::GetHardCodedSettings(5 * 1024 * 1024));
|
| + // The 1GB limit is intended to give a large headroom to tests that need to
|
| + // build up a large data set and issue many concurrent reads or writes.
|
| + callback.Run(storage::GetHardCodedSettings(1024 * 1024 * 1024));
|
| }
|
|
|
| PlatformNotificationService*
|
|
|