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

Unified Diff: chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api.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/enterprise_platform_keys_private/enterprise_platform_keys_private_api.h
diff --git a/chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api.h b/chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api.h
index a0194a2c8998f9906fa4095f88be3ca2667cd634..d79f5f3b0c40feb967766d0468a1edd5a95bb13e 100644
--- a/chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api.h
+++ b/chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api.h
@@ -14,20 +14,23 @@
#include "chromeos/dbus/dbus_method_call_status.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
-class PrefRegistrySyncable;
class PrefService;
namespace chromeos {
class CryptohomeClient;
-} // namespace chromeos
+}
namespace cryptohome {
class AsyncMethodCaller;
-} // namespace cryptohome
+}
namespace policy {
class EnterpriseInstallAttributes;
-} // namespace policy
+}
+
+namespace user_prefs {
+class PrefRegistrySyncable;
+}
namespace extensions {
@@ -80,7 +83,7 @@ typedef EPKPChallengeMachineKey
class EPKPChallengeUserKey : public EPKPChallengeKeyBase {
public:
- static void RegisterUserPrefs(PrefRegistrySyncable* registry);
+ static void RegisterUserPrefs(user_prefs::PrefRegistrySyncable* registry);
protected:
virtual bool RunImpl() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698