Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1045)

Unified Diff: content/shell/browser/layout_test/layout_test_content_browser_client.cc

Issue 2763813002: Ensure correctness for interleaved IndexedDB cursor iteration. (Closed)
Patch Set: Added comment showing the interleaving sequence used in this test. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/IndexedDB/interleaved-cursors.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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*
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/IndexedDB/interleaved-cursors.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698