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

Unified Diff: chrome/browser/extensions/api/runtime/runtime_api.h

Issue 168253002: Cleanup many APIs to use ProfileKeyedAPI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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/runtime/runtime_api.h
diff --git a/chrome/browser/extensions/api/runtime/runtime_api.h b/chrome/browser/extensions/api/runtime/runtime_api.h
index 3839b31a722b03500dc5b2352dddcc1c24da7ecc..41695fefd511074f557576692806edd918b7ecb5 100644
--- a/chrome/browser/extensions/api/runtime/runtime_api.h
+++ b/chrome/browser/extensions/api/runtime/runtime_api.h
@@ -7,9 +7,9 @@
#include <string>
+#include "chrome/browser/extensions/api/profile_keyed_api_factory.h"
#include "chrome/browser/extensions/chrome_extension_function.h"
#include "chrome/common/extensions/api/runtime.h"
-#include "components/browser_context_keyed_service/browser_context_keyed_service.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "extensions/browser/update_observer.h"
@@ -31,10 +31,12 @@ class ExtensionHost;
// Runtime API dispatches onStartup, onInstalled, and similar events to
// extensions. There is one instance shared between a browser context and
// its related incognito instance.
-class RuntimeAPI : public BrowserContextKeyedService,
+class RuntimeAPI : public ProfileKeyedAPI,
public content::NotificationObserver,
public extensions::UpdateObserver {
public:
+ static ProfileKeyedAPIFactory<RuntimeAPI>* GetFactoryInstance();
+
explicit RuntimeAPI(content::BrowserContext* context);
virtual ~RuntimeAPI();
@@ -44,11 +46,18 @@ class RuntimeAPI : public BrowserContextKeyedService,
const content::NotificationDetails& details) OVERRIDE;
private:
+ friend class ProfileKeyedAPIFactory<RuntimeAPI>;
+
void OnExtensionsReady();
void OnExtensionLoaded(const Extension* extension);
void OnExtensionInstalled(const Extension* extension);
void OnExtensionUninstalled(const Extension* extension);
+ // ProfileKeyedAPI implementation:
+ static const char* service_name() { return "RuntimeAPI"; }
+ static const bool kServiceRedirectedInIncognito = true;
+ static const bool kServiceIsNULLWhileTesting = true;
+
// extensions::UpdateObserver overrides:
virtual void OnAppUpdateAvailable(const Extension* extension) OVERRIDE;
virtual void OnChromeUpdateAvailable() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698