Index: chrome/browser/speech/chrome_speech_recognition_preferences.cc |
diff --git a/chrome/browser/speech/chrome_speech_recognition_preferences.cc b/chrome/browser/speech/chrome_speech_recognition_preferences.cc |
index bf4de55d43b17cf6155dd63eba24c329d438ea16..58df99f7b3e74d3df230f0283cb09fc31dbd6851 100644 |
--- a/chrome/browser/speech/chrome_speech_recognition_preferences.cc |
+++ b/chrome/browser/speech/chrome_speech_recognition_preferences.cc |
@@ -6,6 +6,7 @@ |
#include "base/bind.h" |
#include "base/values.h" |
+#include "chrome/browser/prefs/pref_registry_syncable.h" |
#include "chrome/browser/prefs/pref_service.h" |
#include "chrome/browser/profiles/profile.h" |
#include "chrome/browser/profiles/profile_dependency_manager.h" |
@@ -65,15 +66,15 @@ ChromeSpeechRecognitionPreferences::Factory::BuildServiceInstanceFor( |
} |
void ChromeSpeechRecognitionPreferences::Factory::RegisterUserPrefs( |
- PrefServiceSyncable* prefs) { |
+ PrefRegistrySyncable* prefs) { |
prefs->RegisterBooleanPref( |
prefs::kSpeechRecognitionFilterProfanities, |
kDefaultFilterProfanities, |
- PrefServiceSyncable::UNSYNCABLE_PREF); |
+ PrefRegistrySyncable::UNSYNCABLE_PREF); |
prefs->RegisterListPref( |
prefs::kSpeechRecognitionTrayNotificationShownContexts, |
- PrefServiceSyncable::UNSYNCABLE_PREF); |
+ PrefRegistrySyncable::UNSYNCABLE_PREF); |
} |
bool ChromeSpeechRecognitionPreferences::Factory:: |