| 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 COMPONENTS_PERF_REGISTRY_TESTING_PREF_SERVICE_SYNCABLE_H_ | 5 #ifndef COMPONENTS_PERF_REGISTRY_TESTING_PREF_SERVICE_SYNCABLE_H_ |
| 6 #define COMPONENTS_PERF_REGISTRY_TESTING_PREF_SERVICE_SYNCABLE_H_ | 6 #define COMPONENTS_PERF_REGISTRY_TESTING_PREF_SERVICE_SYNCABLE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/macros.h" |
| 9 #include "base/prefs/testing_pref_service.h" | 9 #include "base/prefs/testing_pref_service.h" |
| 10 | 10 |
| 11 namespace user_prefs { | 11 namespace user_prefs { |
| 12 | 12 |
| 13 class PrefRegistrySyncable; | 13 class PrefRegistrySyncable; |
| 14 | 14 |
| 15 // Test version of PrefServiceSyncable. | 15 // Test version of PrefServiceSyncable. |
| 16 class TestingPrefServiceSyncable | 16 class TestingPrefServiceSyncable |
| 17 : public TestingPrefServiceBase<PrefService, PrefRegistrySyncable> { | 17 : public TestingPrefServiceBase<PrefService, PrefRegistrySyncable> { |
| 18 public: | 18 public: |
| (...skipping 10 matching lines...) Expand all Loading... |
| 29 // a PrefRegistry via its constructor (or via e.g. PrefServiceFactory). | 29 // a PrefRegistry via its constructor (or via e.g. PrefServiceFactory). |
| 30 PrefRegistrySyncable* registry(); | 30 PrefRegistrySyncable* registry(); |
| 31 | 31 |
| 32 private: | 32 private: |
| 33 DISALLOW_COPY_AND_ASSIGN(TestingPrefServiceSyncable); | 33 DISALLOW_COPY_AND_ASSIGN(TestingPrefServiceSyncable); |
| 34 }; | 34 }; |
| 35 | 35 |
| 36 } // namespace user_prefs | 36 } // namespace user_prefs |
| 37 | 37 |
| 38 #endif // COMPONENTS_PERF_REGISTRY_TESTING_PREF_SERVICE_SYNCABLE_H_ | 38 #endif // COMPONENTS_PERF_REGISTRY_TESTING_PREF_SERVICE_SYNCABLE_H_ |
| OLD | NEW |