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

Unified Diff: chrome/browser/first_run/first_run.cc

Issue 14622003: components: Move PrefRegistrySyncable into user_prefs namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 8 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/first_run/first_run.cc
diff --git a/chrome/browser/first_run/first_run.cc b/chrome/browser/first_run/first_run.cc
index f49531a28263a5f36dd8bd898e5cdaf9c6551f3b..52249e249fb9333c72ade8d41124ca158ab06326 100644
--- a/chrome/browser/first_run/first_run.cc
+++ b/chrome/browser/first_run/first_run.cc
@@ -447,10 +447,11 @@ std::string GetPingDelayPrefName() {
installer::master_preferences::kDistroPingDelay);
}
-void RegisterUserPrefs(PrefRegistrySyncable* registry) {
- registry->RegisterIntegerPref(GetPingDelayPrefName().c_str(),
- 0,
- PrefRegistrySyncable::UNSYNCABLE_PREF);
+void RegisterUserPrefs(user_prefs::PrefRegistrySyncable* registry) {
+ registry->RegisterIntegerPref(
+ GetPingDelayPrefName().c_str(),
+ 0,
+ user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
}
bool RemoveSentinel() {
« no previous file with comments | « chrome/browser/first_run/first_run.h ('k') | chrome/browser/geolocation/chrome_geolocation_permission_context_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698