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

Unified Diff: chrome/browser/accessibility/invert_bubble_prefs.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/accessibility/invert_bubble_prefs.cc
diff --git a/chrome/browser/accessibility/invert_bubble_prefs.cc b/chrome/browser/accessibility/invert_bubble_prefs.cc
index fe3873a3014c41ea60e140b93e2523b9eb67dbda..a295cf4da775b86d8cda1e5a9e7865386a59402a 100644
--- a/chrome/browser/accessibility/invert_bubble_prefs.cc
+++ b/chrome/browser/accessibility/invert_bubble_prefs.cc
@@ -9,10 +9,11 @@
namespace chrome {
-void RegisterInvertBubbleUserPrefs(PrefRegistrySyncable* registry) {
- registry->RegisterBooleanPref(prefs::kInvertNotificationShown,
- false,
- PrefRegistrySyncable::UNSYNCABLE_PREF);
+void RegisterInvertBubbleUserPrefs(user_prefs::PrefRegistrySyncable* registry) {
+ registry->RegisterBooleanPref(
+ prefs::kInvertNotificationShown,
+ false,
+ user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
}
} // namespace chrome
« no previous file with comments | « chrome/browser/accessibility/invert_bubble_prefs.h ('k') | chrome/browser/autofill/autofill_external_delegate_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698