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

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

Issue 13219005: Replace string16 with base::string16 in src/webkit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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_DOM_STORAGE_DOM_STORAGE_TYPES_H_ 5 #ifndef WEBKIT_DOM_STORAGE_DOM_STORAGE_TYPES_H_
6 #define WEBKIT_DOM_STORAGE_DOM_STORAGE_TYPES_H_ 6 #define WEBKIT_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_base::string16.h"
12 #include "base/string16.h" 12 #include "base/string16.h.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/storage/webkit_storage_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 // Value to indicate an area that not be opened. 35 // Value to indicate an area that not be opened.
36 const int kInvalidAreaId = -1; 36 const int kInvalidAreaId = -1;
37 37
38 typedef std::map<string16, NullableString16> ValuesMap; 38 typedef std::map<base::string16, NullableString16> ValuesMap;
39 39
40 struct WEBKIT_STORAGE_EXPORT LocalStorageUsageInfo { 40 struct WEBKIT_STORAGE_EXPORT LocalStorageUsageInfo {
41 GURL origin; 41 GURL origin;
42 size_t data_size; 42 size_t data_size;
43 base::Time last_modified; 43 base::Time last_modified;
44 44
45 LocalStorageUsageInfo(); 45 LocalStorageUsageInfo();
46 ~LocalStorageUsageInfo(); 46 ~LocalStorageUsageInfo();
47 }; 47 };
48 48
49 struct WEBKIT_STORAGE_EXPORT SessionStorageUsageInfo { 49 struct WEBKIT_STORAGE_EXPORT SessionStorageUsageInfo {
50 GURL origin; 50 GURL origin;
51 std::string persistent_namespace_id; 51 std::string persistent_namespace_id;
52 52
53 SessionStorageUsageInfo(); 53 SessionStorageUsageInfo();
54 ~SessionStorageUsageInfo(); 54 ~SessionStorageUsageInfo();
55 }; 55 };
56 56
57 } // namespace dom_storage 57 } // namespace dom_storage
58 58
59 #endif // WEBKIT_DOM_STORAGE_DOM_STORAGE_TYPES_H_ 59 #endif // WEBKIT_DOM_STORAGE_DOM_STORAGE_TYPES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698