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 BASE_PREFS_TESTING_PREF_SERVICE_H_ | 5 #ifndef BASE_PREFS_TESTING_PREF_SERVICE_H_ |
6 #define BASE_PREFS_TESTING_PREF_SERVICE_H_ | 6 #define BASE_PREFS_TESTING_PREF_SERVICE_H_ |
7 | 7 |
| 8 #include "base/macros.h" |
8 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
9 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
10 #include "base/prefs/pref_registry.h" | 11 #include "base/prefs/pref_registry.h" |
11 #include "base/prefs/pref_service.h" | 12 #include "base/prefs/pref_service.h" |
12 #include "base/prefs/testing_pref_store.h" | 13 #include "base/prefs/testing_pref_store.h" |
13 | 14 |
14 class PrefNotifierImpl; | 15 class PrefNotifierImpl; |
15 class PrefRegistrySimple; | 16 class PrefRegistrySimple; |
16 class TestingPrefStore; | 17 class TestingPrefStore; |
17 | 18 |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS); | 187 WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS); |
187 } | 188 } |
188 | 189 |
189 template <class SuperPrefService, class ConstructionPrefRegistry> | 190 template <class SuperPrefService, class ConstructionPrefRegistry> |
190 void TestingPrefServiceBase<SuperPrefService, ConstructionPrefRegistry>:: | 191 void TestingPrefServiceBase<SuperPrefService, ConstructionPrefRegistry>:: |
191 RemovePref(TestingPrefStore* pref_store, const std::string& path) { | 192 RemovePref(TestingPrefStore* pref_store, const std::string& path) { |
192 pref_store->RemoveValue(path, WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS); | 193 pref_store->RemoveValue(path, WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS); |
193 } | 194 } |
194 | 195 |
195 #endif // BASE_PREFS_TESTING_PREF_SERVICE_H_ | 196 #endif // BASE_PREFS_TESTING_PREF_SERVICE_H_ |
OLD | NEW |