OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXTENSIONS_BROWSER_API_STORAGE_LOCAL_VALUE_STORE_CACHE_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_STORAGE_LOCAL_VALUE_STORE_CACHE_H_ |
6 #define EXTENSIONS_BROWSER_API_STORAGE_LOCAL_VALUE_STORE_CACHE_H_ | 6 #define EXTENSIONS_BROWSER_API_STORAGE_LOCAL_VALUE_STORE_CACHE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | |
9 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
10 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "base/macros.h" |
11 #include "base/memory/linked_ptr.h" | 11 #include "base/memory/linked_ptr.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "extensions/browser/api/storage/settings_storage_quota_enforcer.h" | 14 #include "extensions/browser/api/storage/settings_storage_quota_enforcer.h" |
15 #include "extensions/browser/api/storage/value_store_cache.h" | 15 #include "extensions/browser/api/storage/value_store_cache.h" |
16 | 16 |
17 namespace extensions { | 17 namespace extensions { |
18 | 18 |
19 class SettingsStorageFactory; | 19 class SettingsStorageFactory; |
20 | 20 |
(...skipping 30 matching lines...) Expand all Loading... |
51 | 51 |
52 // The collection of ValueStores for local storage. | 52 // The collection of ValueStores for local storage. |
53 StorageMap storage_map_; | 53 StorageMap storage_map_; |
54 | 54 |
55 DISALLOW_COPY_AND_ASSIGN(LocalValueStoreCache); | 55 DISALLOW_COPY_AND_ASSIGN(LocalValueStoreCache); |
56 }; | 56 }; |
57 | 57 |
58 } // namespace extensions | 58 } // namespace extensions |
59 | 59 |
60 #endif // EXTENSIONS_BROWSER_API_STORAGE_LOCAL_VALUE_STORE_CACHE_H_ | 60 #endif // EXTENSIONS_BROWSER_API_STORAGE_LOCAL_VALUE_STORE_CACHE_H_ |
OLD | NEW |