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

Side by Side Diff: webkit/common/dom_storage/dom_storage_types.h

Issue 16091011: 2nd try: Split webkit_storage target into webkit_storage_{browser,common,renderer} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: splint_link fix Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_COMMON_DOM_STORAGE_DOM_STORAGE_TYPES_H_ 5 #ifndef WEBKIT_COMMON_DOM_STORAGE_DOM_STORAGE_TYPES_H_
6 #define WEBKIT_COMMON_DOM_STORAGE_DOM_STORAGE_TYPES_H_ 6 #define WEBKIT_COMMON_DOM_STORAGE_DOM_STORAGE_TYPES_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/nullable_string16.h" 11 #include "base/nullable_string16.h"
12 #include "base/string16.h" 12 #include "base/string16.h"
13 #include "base/time.h" 13 #include "base/time.h"
14 #include "googleurl/src/gurl.h" 14 #include "googleurl/src/gurl.h"
15 #include "webkit/storage/webkit_storage_export.h" 15 #include "webkit/common/webkit_common_export.h"
16 16
17 namespace dom_storage { 17 namespace dom_storage {
18 18
19 // The quota for each storage area. Suggested by the spec. 19 // The quota for each storage area. Suggested by the spec.
20 // This value is enforced in renderer processes. 20 // This value is enforced in renderer processes.
21 const size_t kPerAreaQuota = 5 * 1024 * 1024; 21 const size_t kPerAreaQuota = 5 * 1024 * 1024;
22 22
23 // In the browser process we allow some overage to 23 // In the browser process we allow some overage to
24 // accomodate concurrent writes from different renderers 24 // accomodate concurrent writes from different renderers
25 // that were allowed because the limit imposed in the renderer 25 // that were allowed because the limit imposed in the renderer
26 // wasn't exceeded. 26 // wasn't exceeded.
27 const size_t kPerAreaOverQuotaAllowance = 100 * 1024; 27 const size_t kPerAreaOverQuotaAllowance = 100 * 1024;
28 28
29 // Value to indicate the localstorage namespace vs non-zero 29 // Value to indicate the localstorage namespace vs non-zero
30 // values for sessionstorage namespaces. 30 // values for sessionstorage namespaces.
31 const int64 kLocalStorageNamespaceId = 0; 31 const int64 kLocalStorageNamespaceId = 0;
32 32
33 const int64 kInvalidSessionStorageNamespaceId = kLocalStorageNamespaceId; 33 const int64 kInvalidSessionStorageNamespaceId = kLocalStorageNamespaceId;
34 34
35 // Start purging memory if the number of in-memory areas exceeds this. 35 // Start purging memory if the number of in-memory areas exceeds this.
36 const int64 kMaxInMemoryAreas = 100; 36 const int64 kMaxInMemoryAreas = 100;
37 37
38 // Value to indicate an area that not be opened. 38 // Value to indicate an area that not be opened.
39 const int kInvalidAreaId = -1; 39 const int kInvalidAreaId = -1;
40 40
41 typedef std::map<base::string16, NullableString16> ValuesMap; 41 typedef std::map<base::string16, NullableString16> ValuesMap;
42 42
43 struct WEBKIT_STORAGE_EXPORT LocalStorageUsageInfo { 43 struct WEBKIT_COMMON_EXPORT LocalStorageUsageInfo {
44 GURL origin; 44 GURL origin;
45 size_t data_size; 45 size_t data_size;
46 base::Time last_modified; 46 base::Time last_modified;
47 47
48 LocalStorageUsageInfo(); 48 LocalStorageUsageInfo();
49 ~LocalStorageUsageInfo(); 49 ~LocalStorageUsageInfo();
50 }; 50 };
51 51
52 struct WEBKIT_STORAGE_EXPORT SessionStorageUsageInfo { 52 struct WEBKIT_COMMON_EXPORT SessionStorageUsageInfo {
53 GURL origin; 53 GURL origin;
54 std::string persistent_namespace_id; 54 std::string persistent_namespace_id;
55 55
56 SessionStorageUsageInfo(); 56 SessionStorageUsageInfo();
57 ~SessionStorageUsageInfo(); 57 ~SessionStorageUsageInfo();
58 }; 58 };
59 59
60 } // namespace dom_storage 60 } // namespace dom_storage
61 61
62 #endif // WEBKIT_COMMON_DOM_STORAGE_DOM_STORAGE_TYPES_H_ 62 #endif // WEBKIT_COMMON_DOM_STORAGE_DOM_STORAGE_TYPES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698