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

Side by Side Diff: chrome/browser/prefs/chrome_pref_service_factory.cc

Issue 2111253002: Clean up old legacy preference migration logic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove now unused kHashStoreId in unit test Created 4 years, 5 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) 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 #include "chrome/browser/prefs/chrome_pref_service_factory.h" 5 #include "chrome/browser/prefs/chrome_pref_service_factory.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 } 540 }
541 541
542 void ClearResetTime(Profile* profile) { 542 void ClearResetTime(Profile* profile) {
543 ProfilePrefStoreManager::ClearResetTime(profile->GetPrefs()); 543 ProfilePrefStoreManager::ClearResetTime(profile->GetPrefs());
544 } 544 }
545 545
546 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { 546 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) {
547 ProfilePrefStoreManager::RegisterProfilePrefs(registry); 547 ProfilePrefStoreManager::RegisterProfilePrefs(registry);
548 } 548 }
549 549
550 void RegisterPrefs(PrefRegistrySimple* registry) {
551 ProfilePrefStoreManager::RegisterPrefs(registry);
552 }
553
554 } // namespace chrome_prefs 550 } // namespace chrome_prefs
OLDNEW
« no previous file with comments | « chrome/browser/prefs/chrome_pref_service_factory.h ('k') | chrome/browser/prefs/profile_pref_store_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698