Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(636)

Side by Side Diff: chrome/test/base/testing_pref_service_syncable.h

Issue 653773004: Standardize usage of virtual/override/final in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_TEST_BASE_TESTING_PREF_SERVICE_SYNCABLE_H_ 5 #ifndef CHROME_TEST_BASE_TESTING_PREF_SERVICE_SYNCABLE_H_
6 #define CHROME_TEST_BASE_TESTING_PREF_SERVICE_SYNCABLE_H_ 6 #define CHROME_TEST_BASE_TESTING_PREF_SERVICE_SYNCABLE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/prefs/testing_pref_service.h" 9 #include "base/prefs/testing_pref_service.h"
10 #include "chrome/browser/prefs/pref_service_syncable.h" 10 #include "chrome/browser/prefs/pref_service_syncable.h"
11 11
12 namespace user_prefs { 12 namespace user_prefs {
13 class PrefRegistrySyncable; 13 class PrefRegistrySyncable;
14 } 14 }
15 15
16 // Test version of PrefServiceSyncable. 16 // Test version of PrefServiceSyncable.
17 class TestingPrefServiceSyncable 17 class TestingPrefServiceSyncable
18 : public TestingPrefServiceBase<PrefServiceSyncable, 18 : public TestingPrefServiceBase<PrefServiceSyncable,
19 user_prefs::PrefRegistrySyncable> { 19 user_prefs::PrefRegistrySyncable> {
20 public: 20 public:
21 TestingPrefServiceSyncable(); 21 TestingPrefServiceSyncable();
22 TestingPrefServiceSyncable(TestingPrefStore* managed_prefs, 22 TestingPrefServiceSyncable(TestingPrefStore* managed_prefs,
23 TestingPrefStore* user_prefs, 23 TestingPrefStore* user_prefs,
24 TestingPrefStore* recommended_prefs, 24 TestingPrefStore* recommended_prefs,
25 user_prefs::PrefRegistrySyncable* pref_registry, 25 user_prefs::PrefRegistrySyncable* pref_registry,
26 PrefNotifierImpl* pref_notifier); 26 PrefNotifierImpl* pref_notifier);
27 virtual ~TestingPrefServiceSyncable(); 27 ~TestingPrefServiceSyncable() override;
28 28
29 // This is provided as a convenience; on a production PrefService 29 // This is provided as a convenience; on a production PrefService
30 // you would do all registrations before constructing it, passing it 30 // you would do all registrations before constructing it, passing it
31 // a PrefRegistry via its constructor (or via e.g. PrefServiceFactory). 31 // a PrefRegistry via its constructor (or via e.g. PrefServiceFactory).
32 user_prefs::PrefRegistrySyncable* registry(); 32 user_prefs::PrefRegistrySyncable* registry();
33 33
34 private: 34 private:
35 DISALLOW_COPY_AND_ASSIGN(TestingPrefServiceSyncable); 35 DISALLOW_COPY_AND_ASSIGN(TestingPrefServiceSyncable);
36 }; 36 };
37 37
38 template <> 38 template <>
39 TestingPrefServiceBase<PrefServiceSyncable, user_prefs::PrefRegistrySyncable>:: 39 TestingPrefServiceBase<PrefServiceSyncable, user_prefs::PrefRegistrySyncable>::
40 TestingPrefServiceBase(TestingPrefStore* managed_prefs, 40 TestingPrefServiceBase(TestingPrefStore* managed_prefs,
41 TestingPrefStore* user_prefs, 41 TestingPrefStore* user_prefs,
42 TestingPrefStore* recommended_prefs, 42 TestingPrefStore* recommended_prefs,
43 user_prefs::PrefRegistrySyncable* pref_registry, 43 user_prefs::PrefRegistrySyncable* pref_registry,
44 PrefNotifierImpl* pref_notifier); 44 PrefNotifierImpl* pref_notifier);
45 45
46 #endif // CHROME_TEST_BASE_TESTING_PREF_SERVICE_SYNCABLE_H_ 46 #endif // CHROME_TEST_BASE_TESTING_PREF_SERVICE_SYNCABLE_H_
47 47
OLDNEW
« no previous file with comments | « chrome/test/base/testing_browser_process_platform_part.h ('k') | chrome/test/base/testing_profile.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698