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

Unified Diff: extensions/browser/process_manager_factory.cc

Issue 2863213004: ProcessManagerFactory: fix dependencies in ApiResourceManager, LazyBgndTaskFactory (Closed)
Patch Set: more explanation Created 3 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
« no previous file with comments | « extensions/browser/browser_context_keyed_api_factory.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/process_manager_factory.cc
diff --git a/extensions/browser/process_manager_factory.cc b/extensions/browser/process_manager_factory.cc
index f6c001caed456dc95868a37ba0e52c99e6f93e51..e8929c5da2551212689238bb30991e869da26614 100644
--- a/extensions/browser/process_manager_factory.cc
+++ b/extensions/browser/process_manager_factory.cc
@@ -2,10 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "extensions/browser/process_manager_factory.h"
+
#include "components/keyed_service/content/browser_context_dependency_manager.h"
#include "extensions/browser/extension_registry_factory.h"
+#include "extensions/browser/lazy_background_task_queue_factory.h"
#include "extensions/browser/process_manager.h"
-#include "extensions/browser/process_manager_factory.h"
using content::BrowserContext;
@@ -35,6 +37,7 @@ ProcessManagerFactory::ProcessManagerFactory()
"ProcessManager",
BrowserContextDependencyManager::GetInstance()) {
DependsOn(extensions::ExtensionRegistryFactory::GetInstance());
+ DependsOn(extensions::LazyBackgroundTaskQueueFactory::GetInstance());
}
ProcessManagerFactory::~ProcessManagerFactory() {
« no previous file with comments | « extensions/browser/browser_context_keyed_api_factory.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698