| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "components/prefs/pref_registry.h" | 43 #include "components/prefs/pref_registry.h" |
| 44 #include "components/prefs/pref_registry_simple.h" | 44 #include "components/prefs/pref_registry_simple.h" |
| 45 #include "components/prefs/pref_service.h" | 45 #include "components/prefs/pref_service.h" |
| 46 #include "components/prefs/pref_store.h" | 46 #include "components/prefs/pref_store.h" |
| 47 #include "components/prefs/pref_value_store.h" | 47 #include "components/prefs/pref_value_store.h" |
| 48 #include "components/search_engines/default_search_manager.h" | 48 #include "components/search_engines/default_search_manager.h" |
| 49 #include "components/search_engines/default_search_pref_migration.h" | 49 #include "components/search_engines/default_search_pref_migration.h" |
| 50 #include "components/search_engines/search_engines_pref_names.h" | 50 #include "components/search_engines/search_engines_pref_names.h" |
| 51 #include "components/signin/core/common/signin_pref_names.h" | 51 #include "components/signin/core/common/signin_pref_names.h" |
| 52 #include "components/sync/base/model_type.h" | 52 #include "components/sync/base/model_type.h" |
| 53 #include "components/sync/driver/pref_names.h" | 53 #include "components/sync/base/pref_names.h" |
| 54 #include "components/syncable_prefs/pref_model_associator.h" | 54 #include "components/syncable_prefs/pref_model_associator.h" |
| 55 #include "components/syncable_prefs/pref_service_syncable.h" | 55 #include "components/syncable_prefs/pref_service_syncable.h" |
| 56 #include "components/syncable_prefs/pref_service_syncable_factory.h" | 56 #include "components/syncable_prefs/pref_service_syncable_factory.h" |
| 57 #include "components/user_prefs/tracked/pref_names.h" | 57 #include "components/user_prefs/tracked/pref_names.h" |
| 58 #include "content/public/browser/browser_context.h" | 58 #include "content/public/browser/browser_context.h" |
| 59 #include "content/public/browser/browser_thread.h" | 59 #include "content/public/browser/browser_thread.h" |
| 60 #include "sql/error_delegate_util.h" | 60 #include "sql/error_delegate_util.h" |
| 61 #include "ui/base/resource/resource_bundle.h" | 61 #include "ui/base/resource/resource_bundle.h" |
| 62 | 62 |
| 63 #if defined(ENABLE_EXTENSIONS) | 63 #if defined(ENABLE_EXTENSIONS) |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 | 539 |
| 540 void ClearResetTime(Profile* profile) { | 540 void ClearResetTime(Profile* profile) { |
| 541 ProfilePrefStoreManager::ClearResetTime(profile->GetPrefs()); | 541 ProfilePrefStoreManager::ClearResetTime(profile->GetPrefs()); |
| 542 } | 542 } |
| 543 | 543 |
| 544 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { | 544 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { |
| 545 ProfilePrefStoreManager::RegisterProfilePrefs(registry); | 545 ProfilePrefStoreManager::RegisterProfilePrefs(registry); |
| 546 } | 546 } |
| 547 | 547 |
| 548 } // namespace chrome_prefs | 548 } // namespace chrome_prefs |
| OLD | NEW |