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

Unified Diff: chrome/browser/prefs/chrome_pref_service_factory.cc

Issue 2740493002: Pref service: create service at browser startup (Closed)
Patch Set: Rename the capability provided by the service Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/prefs/chrome_pref_service_factory.cc
diff --git a/chrome/browser/prefs/chrome_pref_service_factory.cc b/chrome/browser/prefs/chrome_pref_service_factory.cc
index 4e7c09fedd93acc2a9f60a13a2d702c425f186b2..4178f7c96701bcae78446044c5144d890b616aaf 100644
--- a/chrome/browser/prefs/chrome_pref_service_factory.cc
+++ b/chrome/browser/prefs/chrome_pref_service_factory.cc
@@ -503,7 +503,8 @@ std::unique_ptr<sync_preferences::PrefServiceSyncable> CreateProfilePrefs(
SupervisedUserSettingsService* supervised_user_settings,
const scoped_refptr<PrefStore>& extension_prefs,
const scoped_refptr<user_prefs::PrefRegistrySyncable>& pref_registry,
- bool async) {
+ bool async,
+ service_manager::Connector* connector) {
TRACE_EVENT0("browser", "chrome_prefs::CreateProfilePrefs");
SCOPED_UMA_HISTOGRAM_TIMER("PrefService.CreateProfilePrefsTime");
@@ -527,7 +528,7 @@ std::unique_ptr<sync_preferences::PrefServiceSyncable> CreateProfilePrefs(
supervised_user_settings, user_pref_store, extension_prefs,
async);
std::unique_ptr<sync_preferences::PrefServiceSyncable> pref_service =
- factory.CreateSyncable(pref_registry.get());
+ factory.CreateSyncable(pref_registry.get(), connector);
return pref_service;
}

Powered by Google App Engine
This is Rietveld 408576698