| 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() {
|
|
|