OLD | NEW |
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 CONTENT_BROWSER_DOM_STORAGE_DOM_STORAGE_CONTEXT_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_DOM_STORAGE_DOM_STORAGE_CONTEXT_IMPL_H_ |
6 #define CONTENT_BROWSER_DOM_STORAGE_DOM_STORAGE_CONTEXT_IMPL_H_ | 6 #define CONTENT_BROWSER_DOM_STORAGE_DOM_STORAGE_CONTEXT_IMPL_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <deque> | 10 #include <deque> |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "base/optional.h" | 21 #include "base/optional.h" |
22 #include "base/time/time.h" | 22 #include "base/time/time.h" |
23 #include "base/trace_event/memory_dump_provider.h" | 23 #include "base/trace_event/memory_dump_provider.h" |
24 #include "content/browser/bad_message.h" | 24 #include "content/browser/bad_message.h" |
25 #include "content/common/content_export.h" | 25 #include "content/common/content_export.h" |
26 #include "url/gurl.h" | 26 #include "url/gurl.h" |
27 | 27 |
28 namespace base { | 28 namespace base { |
29 class FilePath; | 29 class FilePath; |
30 class NullableString16; | 30 class NullableString16; |
31 class Time; | |
32 } | 31 } |
33 | 32 |
34 namespace storage { | 33 namespace storage { |
35 class SpecialStoragePolicy; | 34 class SpecialStoragePolicy; |
36 } | 35 } |
37 | 36 |
38 namespace content { | 37 namespace content { |
39 | 38 |
40 class DOMStorageArea; | 39 class DOMStorageArea; |
41 class DOMStorageNamespace; | 40 class DOMStorageNamespace; |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 // sessionStorage. | 268 // sessionStorage. |
270 std::map<std::string, int64_t> persistent_namespace_id_to_namespace_id_; | 269 std::map<std::string, int64_t> persistent_namespace_id_to_namespace_id_; |
271 | 270 |
272 // For cleaning up unused databases more aggressively. | 271 // For cleaning up unused databases more aggressively. |
273 bool is_low_end_device_; | 272 bool is_low_end_device_; |
274 }; | 273 }; |
275 | 274 |
276 } // namespace content | 275 } // namespace content |
277 | 276 |
278 #endif // CONTENT_BROWSER_DOM_STORAGE_DOM_STORAGE_CONTEXT_IMPL_H_ | 277 #endif // CONTENT_BROWSER_DOM_STORAGE_DOM_STORAGE_CONTEXT_IMPL_H_ |
OLD | NEW |