Index: chrome/browser/ui/browser_instant_controller.cc |
diff --git a/chrome/browser/ui/browser_instant_controller.cc b/chrome/browser/ui/browser_instant_controller.cc |
index 15ec0efa678a1b45dad23dd1d29a556d43671567..e51158cee2f670443604d9c1767593c79e6f229c 100644 |
--- a/chrome/browser/ui/browser_instant_controller.cc |
+++ b/chrome/browser/ui/browser_instant_controller.cc |
@@ -69,13 +69,13 @@ bool BrowserInstantController::IsInstantEnabled(Profile* profile) { |
profile->GetPrefs()->GetBoolean(GetInstantPrefName(profile)); |
} |
-void BrowserInstantController::RegisterUserPrefs(PrefService* prefs) { |
+void BrowserInstantController::RegisterUserPrefs(PrefServiceSyncable* prefs) { |
prefs->RegisterBooleanPref(prefs::kInstantConfirmDialogShown, false, |
- PrefService::SYNCABLE_PREF); |
+ PrefServiceSyncable::SYNCABLE_PREF); |
prefs->RegisterBooleanPref(prefs::kInstantExtendedEnabled, true, |
- PrefService::SYNCABLE_PREF); |
+ PrefServiceSyncable::SYNCABLE_PREF); |
prefs->RegisterBooleanPref(prefs::kInstantEnabled, false, |
- PrefService::SYNCABLE_PREF); |
+ PrefServiceSyncable::SYNCABLE_PREF); |
} |
bool BrowserInstantController::OpenInstant(WindowOpenDisposition disposition) { |