| 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 CHROME_BROWSER_EXTENSIONS_API_STORAGE_LOCAL_VALUE_STORE_CACHE_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_STORAGE_LOCAL_VALUE_STORE_CACHE_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_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" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "chrome/browser/extensions/api/storage/value_store_cache.h" | 12 #include "extensions/browser/api/storage/value_store_cache.h" |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 class FilePath; | 15 class FilePath; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace extensions { | 18 namespace extensions { |
| 19 | 19 |
| 20 class SettingsBackend; | 20 class SettingsBackend; |
| 21 class SettingsStorageFactory; | 21 class SettingsStorageFactory; |
| 22 | 22 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 bool initialized_; | 41 bool initialized_; |
| 42 scoped_ptr<SettingsBackend> app_backend_; | 42 scoped_ptr<SettingsBackend> app_backend_; |
| 43 scoped_ptr<SettingsBackend> extension_backend_; | 43 scoped_ptr<SettingsBackend> extension_backend_; |
| 44 | 44 |
| 45 DISALLOW_COPY_AND_ASSIGN(LocalValueStoreCache); | 45 DISALLOW_COPY_AND_ASSIGN(LocalValueStoreCache); |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 } // namespace extensions | 48 } // namespace extensions |
| 49 | 49 |
| 50 #endif // CHROME_BROWSER_EXTENSIONS_API_STORAGE_LOCAL_VALUE_STORE_CACHE_H_ | 50 #endif // EXTENSIONS_BROWSER_API_STORAGE_LOCAL_VALUE_STORE_CACHE_H_ |
| OLD | NEW |