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 <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 #include "chrome/browser/prefs/pref_service_syncable_factory.h" | 32 #include "chrome/browser/prefs/pref_service_syncable_factory.h" |
33 #include "chrome/browser/prefs/profile_pref_store_manager.h" | 33 #include "chrome/browser/prefs/profile_pref_store_manager.h" |
34 #include "chrome/browser/profiles/file_path_verifier_win.h" | 34 #include "chrome/browser/profiles/file_path_verifier_win.h" |
35 #include "chrome/browser/profiles/profile_info_cache.h" | 35 #include "chrome/browser/profiles/profile_info_cache.h" |
36 #include "chrome/browser/profiles/profile_manager.h" | 36 #include "chrome/browser/profiles/profile_manager.h" |
37 #include "chrome/browser/search_engines/default_search_manager.h" | 37 #include "chrome/browser/search_engines/default_search_manager.h" |
38 #include "chrome/browser/search_engines/default_search_pref_migration.h" | 38 #include "chrome/browser/search_engines/default_search_pref_migration.h" |
39 #include "chrome/browser/ui/profile_error_dialog.h" | 39 #include "chrome/browser/ui/profile_error_dialog.h" |
40 #include "chrome/common/chrome_constants.h" | 40 #include "chrome/common/chrome_constants.h" |
41 #include "chrome/common/pref_names.h" | 41 #include "chrome/common/pref_names.h" |
42 #include "components/user_prefs/pref_registry_syncable.h" | 42 #include "components/pref_registry/pref_registry_syncable.h" |
43 #include "content/public/browser/browser_context.h" | 43 #include "content/public/browser/browser_context.h" |
44 #include "content/public/browser/browser_thread.h" | 44 #include "content/public/browser/browser_thread.h" |
45 #include "extensions/browser/pref_names.h" | 45 #include "extensions/browser/pref_names.h" |
46 #include "grit/browser_resources.h" | 46 #include "grit/browser_resources.h" |
47 #include "grit/chromium_strings.h" | 47 #include "grit/chromium_strings.h" |
48 #include "grit/generated_resources.h" | 48 #include "grit/generated_resources.h" |
49 #include "ui/base/resource/resource_bundle.h" | 49 #include "ui/base/resource/resource_bundle.h" |
50 | 50 |
51 #if defined(ENABLE_CONFIGURATION_POLICY) | 51 #if defined(ENABLE_CONFIGURATION_POLICY) |
52 #include "components/policy/core/browser/browser_policy_connector.h" | 52 #include "components/policy/core/browser/browser_policy_connector.h" |
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
531 | 531 |
532 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { | 532 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { |
533 ProfilePrefStoreManager::RegisterProfilePrefs(registry); | 533 ProfilePrefStoreManager::RegisterProfilePrefs(registry); |
534 } | 534 } |
535 | 535 |
536 void RegisterPrefs(PrefRegistrySimple* registry) { | 536 void RegisterPrefs(PrefRegistrySimple* registry) { |
537 ProfilePrefStoreManager::RegisterPrefs(registry); | 537 ProfilePrefStoreManager::RegisterPrefs(registry); |
538 } | 538 } |
539 | 539 |
540 } // namespace chrome_prefs | 540 } // namespace chrome_prefs |
OLD | NEW |