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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #include "components/prefs/pref_registry.h" | 42 #include "components/prefs/pref_registry.h" |
43 #include "components/prefs/pref_registry_simple.h" | 43 #include "components/prefs/pref_registry_simple.h" |
44 #include "components/prefs/pref_service.h" | 44 #include "components/prefs/pref_service.h" |
45 #include "components/prefs/pref_store.h" | 45 #include "components/prefs/pref_store.h" |
46 #include "components/prefs/pref_value_store.h" | 46 #include "components/prefs/pref_value_store.h" |
47 #include "components/search_engines/default_search_manager.h" | 47 #include "components/search_engines/default_search_manager.h" |
48 #include "components/search_engines/default_search_pref_migration.h" | 48 #include "components/search_engines/default_search_pref_migration.h" |
49 #include "components/search_engines/search_engines_pref_names.h" | 49 #include "components/search_engines/search_engines_pref_names.h" |
50 #include "components/signin/core/common/signin_pref_names.h" | 50 #include "components/signin/core/common/signin_pref_names.h" |
51 #include "components/sync/base/model_type.h" | 51 #include "components/sync/base/model_type.h" |
52 #include "components/sync_driver/pref_names.h" | 52 #include "components/sync/driver/pref_names.h" |
53 #include "components/syncable_prefs/pref_model_associator.h" | 53 #include "components/syncable_prefs/pref_model_associator.h" |
54 #include "components/syncable_prefs/pref_service_syncable.h" | 54 #include "components/syncable_prefs/pref_service_syncable.h" |
55 #include "components/syncable_prefs/pref_service_syncable_factory.h" | 55 #include "components/syncable_prefs/pref_service_syncable_factory.h" |
56 #include "components/user_prefs/tracked/pref_names.h" | 56 #include "components/user_prefs/tracked/pref_names.h" |
57 #include "content/public/browser/browser_context.h" | 57 #include "content/public/browser/browser_context.h" |
58 #include "content/public/browser/browser_thread.h" | 58 #include "content/public/browser/browser_thread.h" |
59 #include "grit/browser_resources.h" | 59 #include "grit/browser_resources.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 |
(...skipping 476 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 |