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

Unified Diff: chrome/browser/extensions/api/signed_in_devices/signed_in_devices_manager.h

Issue 174513003: Move ProfileKeyedAPI implementations to take BrowserContext in the constructor (part 3). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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/signed_in_devices/signed_in_devices_manager.h
diff --git a/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_manager.h b/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_manager.h
index ea4a5f1563e1ed5f7b57b96cc68cc7e5eea8ae3b..3bac1af9bb1f7843e5daa82196dde8ec48de8978 100644
--- a/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_manager.h
+++ b/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_manager.h
@@ -14,10 +14,12 @@
#include "extensions/browser/event_router.h"
class Profile;
+
namespace content {
- class NotificationDetails;
- class NotificationObserver;
- class NotificationRegistrar;
+class BrowserContext;
+class NotificationDetails;
+class NotificationObserver;
+class NotificationRegistrar;
} // namespace content
namespace extensions {
@@ -58,7 +60,7 @@ class SignedInDevicesManager
public:
// Default constructor used for testing.
SignedInDevicesManager();
- explicit SignedInDevicesManager(Profile* profile);
+ explicit SignedInDevicesManager(content::BrowserContext* context);
virtual ~SignedInDevicesManager();
// ProfileKeyedAPI implementation.
@@ -96,4 +98,3 @@ class SignedInDevicesManager
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_API_SIGNED_IN_DEVICES_SIGNED_IN_DEVICES_MANAGER_H__
-

Powered by Google App Engine
This is Rietveld 408576698