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

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

Issue 64193003: Clean up PrefServiceBuilder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix memory ownership bug in ProxyPolicyTest Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome_frame/test/reliability/page_load_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
(...skipping 10 matching lines...) Expand all
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 virtual ~TestingPrefServiceSyncable();
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. PrefServiceBuilder). 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/chrome_tests_unit.gypi ('k') | chrome_frame/test/reliability/page_load_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698