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

Unified Diff: chrome/browser/extensions/api/commands/command_service.h

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/extensions/api/commands/command_service.h
diff --git a/chrome/browser/extensions/api/commands/command_service.h b/chrome/browser/extensions/api/commands/command_service.h
index 50c0af7d8eba5d276904ae2c31593c176b9e0728..7d4bc9201734b993f2e83169f38b03e1e0d087a0 100644
--- a/chrome/browser/extensions/api/commands/command_service.h
+++ b/chrome/browser/extensions/api/commands/command_service.h
@@ -16,15 +16,18 @@
#include "content/public/browser/notification_registrar.h"
#include "content/public/browser/notification_source.h"
-class PrefRegistrySyncable;
class Profile;
namespace base {
- class DictionaryValue;
+class DictionaryValue;
}
namespace ui {
- class Accelerator;
+class Accelerator;
+}
+
+namespace user_prefs {
+class PrefRegistrySyncable;
}
namespace extensions {
@@ -43,7 +46,7 @@ class CommandService : public ProfileKeyedAPI,
};
// Register prefs for keybinding.
- static void RegisterUserPrefs(PrefRegistrySyncable* registry);
+ static void RegisterUserPrefs(user_prefs::PrefRegistrySyncable* registry);
// Constructs a CommandService object for the given profile.
explicit CommandService(Profile* profile);
« no previous file with comments | « chrome/browser/download/download_prefs.cc ('k') | chrome/browser/extensions/api/commands/command_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698