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

Unified Diff: content/test/data/indexeddb/write_4mb_blob.html

Issue 2855943003: Reduce the in-memory blob storgae limit on Android (Closed)
Patch Set: Fix IndexedDBBrowserTest. Created 3 years, 7 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
Index: content/test/data/indexeddb/write_4mb_blob.html
diff --git a/content/test/data/indexeddb/write_20mb_blob.html b/content/test/data/indexeddb/write_4mb_blob.html
similarity index 90%
rename from content/test/data/indexeddb/write_20mb_blob.html
rename to content/test/data/indexeddb/write_4mb_blob.html
index 70720d6ea74c3334427d7b3b69e8a2ed0960c007..0e0fb3f13adb895f3cfa2284392ae0c358505d22 100644
--- a/content/test/data/indexeddb/write_20mb_blob.html
+++ b/content/test/data/indexeddb/write_4mb_blob.html
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<!--
- Copyright 2014 The Chromium Authors. All rights reserved.
+ Copyright 2017 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
@@ -13,7 +13,7 @@
// Constants.
var store_name = 'blobs';
var blob_key = 'blob_key';
-var blob_size = 20 * 1024 * 1024; // 20MB
+var blob_size = 4 * 1024 * 1024; // 4MB
// Shared variables.
var db;

Powered by Google App Engine
This is Rietveld 408576698