| Index: content/browser/browser_main_loop.cc
|
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
|
| index 9b6275d08718b0a76e62990aa88fc9828b341ec6..9834e16cefbae3bcc19542931523a24b626a4d03 100644
|
| --- a/content/browser/browser_main_loop.cc
|
| +++ b/content/browser/browser_main_loop.cc
|
| @@ -10,6 +10,7 @@
|
| #include <utility>
|
| #include <vector>
|
|
|
| +#include "base/base_features.h"
|
| #include "base/base_switches.h"
|
| #include "base/bind.h"
|
| #include "base/command_line.h"
|
| @@ -86,7 +87,6 @@
|
| #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"
|
| @@ -843,7 +843,7 @@ int BrowserMainLoop::PreCreateThreads() {
|
|
|
| InitializeMemoryManagementComponent();
|
|
|
| - if (base::FeatureList::IsEnabled(features::kMemoryCoordinator))
|
| + if (base::FeatureList::IsEnabled(base::features::kMemoryCoordinator))
|
| MemoryCoordinatorImpl::GetInstance()->Start();
|
|
|
| #if defined(OS_MACOSX)
|
| @@ -1593,7 +1593,7 @@ void BrowserMainLoop::InitializeMemoryManagementComponent() {
|
| CreateWinMemoryPressureMonitor(parsed_command_line_);
|
| #endif
|
|
|
| - if (base::FeatureList::IsEnabled(features::kMemoryCoordinator)) {
|
| + if (base::FeatureList::IsEnabled(base::features::kMemoryCoordinator)) {
|
| // Disable MemoryPressureListener when memory coordinator is enabled.
|
| base::MemoryPressureListener::SetNotificationsSuppressed(true);
|
| auto* coordinator = MemoryCoordinatorImpl::GetInstance();
|
|
|