| Index: content/browser/browser_main_loop.cc
|
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
|
| index 86ca49dd2e1bc503cf6faaab06b07b87be56ce61..a35efba0d3ae8a9bd396be8f91677297e31473b2 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,
|
|
|