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

Unified Diff: chrome/browser/extensions/api/runtime/runtime_api_factory.cc

Issue 148083014: ExtensionSystem cleanup part 3 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: mac 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_factory.cc
diff --git a/chrome/browser/extensions/api/runtime/runtime_api_factory.cc b/chrome/browser/extensions/api/runtime/runtime_api_factory.cc
index 395bf8d90bda7ea91964cef4718ee0a4338bf186..278fd9a96d9693f818a9b7f28c08e2d932d18002 100644
--- a/chrome/browser/extensions/api/runtime/runtime_api_factory.cc
+++ b/chrome/browser/extensions/api/runtime/runtime_api_factory.cc
@@ -5,8 +5,8 @@
#include "chrome/browser/extensions/api/runtime/runtime_api_factory.h"
#include "chrome/browser/extensions/api/runtime/runtime_api.h"
-#include "chrome/browser/extensions/extension_system_factory.h"
#include "components/browser_context_keyed_service/browser_context_dependency_manager.h"
+#include "extensions/browser/extension_system_provider.h"
#include "extensions/browser/extensions_browser_client.h"
namespace extensions {
@@ -27,7 +27,7 @@ RuntimeAPIFactory::RuntimeAPIFactory()
: BrowserContextKeyedServiceFactory(
"RuntimeAPI",
BrowserContextDependencyManager::GetInstance()) {
- DependsOn(ExtensionSystemFactory::GetInstance());
+ DependsOn(ExtensionsBrowserClient::Get()->GetExtensionSystemFactory());
}
RuntimeAPIFactory::~RuntimeAPIFactory() {

Powered by Google App Engine
This is Rietveld 408576698