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

Unified Diff: webkit/common/dom_storage/dom_storage_types.h

Issue 21680002: Up the window.localstorage limit to 10M from 5M. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/common/dom_storage/dom_storage_types.h
diff --git a/webkit/common/dom_storage/dom_storage_types.h b/webkit/common/dom_storage/dom_storage_types.h
index 991628f198c745a6b6f5af060787878186152ff4..1d1e585cc41c377ab03d9ea9d898461d2c00ee20 100644
--- a/webkit/common/dom_storage/dom_storage_types.h
+++ b/webkit/common/dom_storage/dom_storage_types.h
@@ -16,9 +16,9 @@
namespace dom_storage {
-// The quota for each storage area. Suggested by the spec.
-// This value is enforced in renderer processes.
-const size_t kPerAreaQuota = 5 * 1024 * 1024;
+// The quota for each storage area.
+// This value is enforced in renderer processes and the browser process.
+const size_t kPerAreaQuota = 10 * 1024 * 1024;
// In the browser process we allow some overage to
// accomodate concurrent writes from different renderers
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698