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

Unified Diff: chrome/browser/chrome_to_mobile_service_factory.h

Issue 15517005: Remove references to Profile from browser_context_keyed_service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase & style Created 7 years, 7 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/chrome_to_mobile_service_factory.h
diff --git a/chrome/browser/chrome_to_mobile_service_factory.h b/chrome/browser/chrome_to_mobile_service_factory.h
index 7a128a4cdcc6e960c39ff50b0ed5f6f4282962d7..da2ee63685e6ce36581cf292f49518762c0d28a7 100644
--- a/chrome/browser/chrome_to_mobile_service_factory.h
+++ b/chrome/browser/chrome_to_mobile_service_factory.h
@@ -12,7 +12,7 @@
class ChromeToMobileService;
class Profile;
-class ChromeToMobileServiceFactory : public ProfileKeyedServiceFactory {
+class ChromeToMobileServiceFactory : public BrowserContextKeyedServiceFactory {
public:
// Get the singleton ChromeToMobileServiceFactory instance.
static ChromeToMobileServiceFactory* GetInstance();
@@ -21,8 +21,8 @@ class ChromeToMobileServiceFactory : public ProfileKeyedServiceFactory {
static ChromeToMobileService* GetForProfile(Profile* profile);
protected:
- // ProfileKeyedServiceFactory overrides:
- virtual ProfileKeyedService* BuildServiceInstanceFor(
+ // BrowserContextKeyedServiceFactory overrides:
+ virtual BrowserContextKeyedService* BuildServiceInstanceFor(
content::BrowserContext* profile) const OVERRIDE;
private:

Powered by Google App Engine
This is Rietveld 408576698