Index: chrome/browser/accessibility/invert_bubble_prefs.cc |
diff --git a/chrome/browser/accessibility/invert_bubble_prefs.cc b/chrome/browser/accessibility/invert_bubble_prefs.cc |
index 001bcd3f94083ef555904381bdd48e795435a91a..8c94e5fe0ecb476bfdac7b78c6d954d181ce8053 100644 |
--- a/chrome/browser/accessibility/invert_bubble_prefs.cc |
+++ b/chrome/browser/accessibility/invert_bubble_prefs.cc |
@@ -4,15 +4,15 @@ |
#include "chrome/browser/accessibility/invert_bubble_prefs.h" |
-#include "chrome/browser/prefs/pref_service.h" |
+#include "chrome/browser/prefs/pref_registry_syncable.h" |
#include "chrome/common/pref_names.h" |
namespace chrome { |
-void RegisterInvertBubbleUserPrefs(PrefServiceSyncable* prefs) { |
- prefs->RegisterBooleanPref(prefs::kInvertNotificationShown, |
- false, |
- PrefServiceSyncable::UNSYNCABLE_PREF); |
+void RegisterInvertBubbleUserPrefs(PrefRegistrySyncable* registry) { |
+ registry->RegisterBooleanPref(prefs::kInvertNotificationShown, |
+ false, |
+ PrefRegistrySyncable::UNSYNCABLE_PREF); |
} |
} // namespace chrome |