Chromium Code Reviews| Index: webkit/dom_storage/dom_storage_types.h |
| =================================================================== |
| --- webkit/dom_storage/dom_storage_types.h (revision 138129) |
| +++ webkit/dom_storage/dom_storage_types.h (working copy) |
| @@ -15,8 +15,15 @@ |
| 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; |
| +// In the browser process we allow some overrage to |
|
ericu
2012/05/22 23:23:35
typo: overage
michaeln
2012/05/23 22:37:28
Done.
|
| +// accomodate concurrent writes from different renderers |
| +// that were allowed because the limit imposed in the renderer |
| +// wasn't exceeded. |
| +const size_t kPerAreaOverQuotaAllowance = 100 * 1024; |
| + |
| // Value to indicate the localstorage namespace vs non-zero |
| // values for sessionstorage namespaces. |
| const int64 kLocalStorageNamespaceId = 0; |