Index: content/browser/browser_main_loop.cc |
diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc |
index 8c90372bed2931a50d01a8404fec70de81c6e0ff..5ad9799b3574fdcc368ba0715e7ed098bfd9c427 100644 |
--- a/content/browser/browser_main_loop.cc |
+++ b/content/browser/browser_main_loop.cc |
@@ -36,6 +36,7 @@ |
#include "base/trace_event/memory_dump_manager.h" |
#include "base/trace_event/trace_event.h" |
#include "build/build_config.h" |
+#include "components/memory_coordinator/browser/memory_state_notifier.h" |
#include "components/tracing/browser/trace_config_file.h" |
#include "components/tracing/common/process_metrics_memory_dump_provider.h" |
#include "components/tracing/common/trace_to_console.h" |
@@ -720,6 +721,10 @@ int BrowserMainLoop::PreCreateThreads() { |
parsed_command_line_)); |
#endif |
+ if (memory_coordinator::IsEnabled()) { |
+ memory_state_notifier_.reset(new memory_coordinator::MemoryStateNotifier); |
+ } |
+ |
#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, |
@@ -996,6 +1001,7 @@ void BrowserMainLoop::ShutdownThreadsAndCleanUp() { |
} |
memory_pressure_monitor_.reset(); |
+ memory_state_notifier_.reset(); |
#if defined(OS_MACOSX) |
BrowserCompositorMac::DisableRecyclingForShutdown(); |