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

Unified Diff: chrome/browser/chromeos/extensions/install_limiter_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/chromeos/extensions/install_limiter_factory.h
diff --git a/chrome/browser/chromeos/extensions/install_limiter_factory.h b/chrome/browser/chromeos/extensions/install_limiter_factory.h
index 615a32caf1f1e0661664754c132784066619fd82..8fe950f4a769653e32f771cdc7ee6e0aed02e1ca 100644
--- a/chrome/browser/chromeos/extensions/install_limiter_factory.h
+++ b/chrome/browser/chromeos/extensions/install_limiter_factory.h
@@ -17,7 +17,7 @@ namespace extensions {
class InstallLimiter;
// Singleton that owns all InstallLimiter and associates them with profiles.
-class InstallLimiterFactory : public ProfileKeyedServiceFactory {
+class InstallLimiterFactory : public BrowserContextKeyedServiceFactory {
public:
static InstallLimiter* GetForProfile(Profile* profile);
@@ -29,8 +29,8 @@ class InstallLimiterFactory : public ProfileKeyedServiceFactory {
InstallLimiterFactory();
virtual ~InstallLimiterFactory();
- // ProfileKeyedServiceFactory overrides:
- virtual ProfileKeyedService* BuildServiceInstanceFor(
+ // BrowserContextKeyedServiceFactory overrides:
+ virtual BrowserContextKeyedService* BuildServiceInstanceFor(
content::BrowserContext* profile) const OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(InstallLimiterFactory);

Powered by Google App Engine
This is Rietveld 408576698