| 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 #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 Loading... |
| 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 |
| OLD | NEW |