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 CHROME_BROWSER_VALUE_STORE_CACHING_VALUE_STORE_H_ | 5 #ifndef CHROME_BROWSER_VALUE_STORE_CACHING_VALUE_STORE_H_ |
6 #define CHROME_BROWSER_VALUE_STORE_CACHING_VALUE_STORE_H_ | 6 #define CHROME_BROWSER_VALUE_STORE_CACHING_VALUE_STORE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 // A helper class to manage lifetime of the backing ValueStore, which lives | 65 // A helper class to manage lifetime of the backing ValueStore, which lives |
66 // on the FILE thread. | 66 // on the FILE thread. |
67 scoped_refptr<Backend> backend_; | 67 scoped_refptr<Backend> backend_; |
68 | 68 |
69 ObserverList<Observer, true> observers_; | 69 ObserverList<Observer, true> observers_; |
70 | 70 |
71 DISALLOW_COPY_AND_ASSIGN(CachingValueStore); | 71 DISALLOW_COPY_AND_ASSIGN(CachingValueStore); |
72 }; | 72 }; |
73 | 73 |
74 #endif // CHROME_BROWSER_VALUE_STORE_CACHING_VALUE_STORE_H_ | 74 #endif // CHROME_BROWSER_VALUE_STORE_CACHING_VALUE_STORE_H_ |
OLD | NEW |