Index: content/browser/browser_main_loop.cc |
diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc |
index 760f5994e624696a3513032334caf7c20177a966..bcb86ad4b959d94ee677f21e95ccf9ac7ffe6716 100644 |
--- a/content/browser/browser_main_loop.cc |
+++ b/content/browser/browser_main_loop.cc |
@@ -56,6 +56,7 @@ |
#include "content/browser/loader/resource_dispatcher_host_impl.h" |
#include "content/browser/loader_delegate_impl.h" |
#include "content/browser/media/media_internals.h" |
+#include "content/browser/memory/memory_coordinator.h" |
#include "content/browser/net/browser_online_state_observer.h" |
#include "content/browser/renderer_host/media/media_stream_manager.h" |
#include "content/browser/renderer_host/render_process_host_impl.h" |
@@ -75,6 +76,7 @@ |
#include "content/public/browser/render_process_host.h" |
#include "content/public/browser/tracing_controller.h" |
#include "content/public/common/content_client.h" |
+#include "content/public/common/content_features.h" |
#include "content/public/common/content_switches.h" |
#include "content/public/common/main_function_params.h" |
#include "content/public/common/result_codes.h" |
@@ -760,6 +762,9 @@ int BrowserMainLoop::PreCreateThreads() { |
parsed_command_line_)); |
#endif |
+ if (base::FeatureList::IsEnabled(features::kMemoryCoordinator)) |
+ MemoryCoordinator::GetInstance()->Start(); |
+ |
#if defined(ENABLE_PLUGINS) |
// Prior to any processing happening on the IO thread, we create the |
// plugin service as it is predominantly used from the IO thread, |