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

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

Issue 1658793002: Update chrome for new prefs location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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>
11 11
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/files/file_path.h" 14 #include "base/files/file_path.h"
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/metrics/field_trial.h" 16 #include "base/metrics/field_trial.h"
17 #include "base/metrics/histogram_macros.h" 17 #include "base/metrics/histogram_macros.h"
18 #include "base/prefs/default_pref_store.h"
19 #include "base/prefs/json_pref_store.h"
20 #include "base/prefs/pref_filter.h"
21 #include "base/prefs/pref_notifier_impl.h"
22 #include "base/prefs/pref_registry.h"
23 #include "base/prefs/pref_registry_simple.h"
24 #include "base/prefs/pref_service.h"
25 #include "base/prefs/pref_store.h"
26 #include "base/prefs/pref_value_store.h"
27 #include "base/threading/sequenced_worker_pool.h" 18 #include "base/threading/sequenced_worker_pool.h"
28 #include "base/time/time.h" 19 #include "base/time/time.h"
29 #include "base/trace_event/trace_event.h" 20 #include "base/trace_event/trace_event.h"
30 #include "build/build_config.h" 21 #include "build/build_config.h"
31 #include "chrome/browser/browser_process.h" 22 #include "chrome/browser/browser_process.h"
32 #include "chrome/browser/prefs/chrome_pref_model_associator_client.h" 23 #include "chrome/browser/prefs/chrome_pref_model_associator_client.h"
33 #include "chrome/browser/prefs/command_line_pref_store.h" 24 #include "chrome/browser/prefs/command_line_pref_store.h"
34 #include "chrome/browser/prefs/profile_pref_store_manager.h" 25 #include "chrome/browser/prefs/profile_pref_store_manager.h"
35 #include "chrome/browser/profiles/profile.h" 26 #include "chrome/browser/profiles/profile.h"
36 #include "chrome/browser/sync/glue/sync_start_util.h" 27 #include "chrome/browser/sync/glue/sync_start_util.h"
37 #include "chrome/browser/ui/profile_error_dialog.h" 28 #include "chrome/browser/ui/profile_error_dialog.h"
38 #include "chrome/common/chrome_constants.h" 29 #include "chrome/common/chrome_constants.h"
39 #include "chrome/common/pref_names.h" 30 #include "chrome/common/pref_names.h"
40 #include "chrome/grit/chromium_strings.h" 31 #include "chrome/grit/chromium_strings.h"
41 #include "chrome/grit/generated_resources.h" 32 #include "chrome/grit/generated_resources.h"
42 #include "components/component_updater/pref_names.h" 33 #include "components/component_updater/pref_names.h"
43 #include "components/pref_registry/pref_registry_syncable.h" 34 #include "components/pref_registry/pref_registry_syncable.h"
35 #include "components/prefs/default_pref_store.h"
36 #include "components/prefs/json_pref_store.h"
37 #include "components/prefs/pref_filter.h"
38 #include "components/prefs/pref_notifier_impl.h"
39 #include "components/prefs/pref_registry.h"
40 #include "components/prefs/pref_registry_simple.h"
41 #include "components/prefs/pref_service.h"
42 #include "components/prefs/pref_store.h"
43 #include "components/prefs/pref_value_store.h"
44 #include "components/search_engines/default_search_manager.h" 44 #include "components/search_engines/default_search_manager.h"
45 #include "components/search_engines/default_search_pref_migration.h" 45 #include "components/search_engines/default_search_pref_migration.h"
46 #include "components/search_engines/search_engines_pref_names.h" 46 #include "components/search_engines/search_engines_pref_names.h"
47 #include "components/signin/core/common/signin_pref_names.h" 47 #include "components/signin/core/common/signin_pref_names.h"
48 #include "components/sync_driver/pref_names.h" 48 #include "components/sync_driver/pref_names.h"
49 #include "components/syncable_prefs/pref_model_associator.h" 49 #include "components/syncable_prefs/pref_model_associator.h"
50 #include "components/syncable_prefs/pref_service_syncable.h" 50 #include "components/syncable_prefs/pref_service_syncable.h"
51 #include "components/syncable_prefs/pref_service_syncable_factory.h" 51 #include "components/syncable_prefs/pref_service_syncable_factory.h"
52 #include "components/user_prefs/tracked/pref_names.h" 52 #include "components/user_prefs/tracked/pref_names.h"
53 #include "content/public/browser/browser_context.h" 53 #include "content/public/browser/browser_context.h"
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 559
560 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { 560 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) {
561 ProfilePrefStoreManager::RegisterProfilePrefs(registry); 561 ProfilePrefStoreManager::RegisterProfilePrefs(registry);
562 } 562 }
563 563
564 void RegisterPrefs(PrefRegistrySimple* registry) { 564 void RegisterPrefs(PrefRegistrySimple* registry) {
565 ProfilePrefStoreManager::RegisterPrefs(registry); 565 ProfilePrefStoreManager::RegisterPrefs(registry);
566 } 566 }
567 567
568 } // namespace chrome_prefs 568 } // namespace chrome_prefs
OLDNEW
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | chrome/browser/prefs/chrome_pref_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698