| Index: content/renderer/render_thread_impl.cc
|
| diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc
|
| index d1c054fd660fba30207b8fbc506ef4c871792628..b560bf8b5cfee1b7b0a00efad7c29a34f7bca59c 100644
|
| --- a/content/renderer/render_thread_impl.cc
|
| +++ b/content/renderer/render_thread_impl.cc
|
| @@ -12,6 +12,7 @@
|
|
|
| #include "base/allocator/allocator_extension.h"
|
| #include "base/at_exit.h"
|
| +#include "base/base_features.h"
|
| #include "base/command_line.h"
|
| #include "base/debug/crash_logging.h"
|
| #include "base/lazy_instance.h"
|
| @@ -79,7 +80,6 @@
|
| #include "content/common/view_messages.h"
|
| #include "content/common/worker_messages.h"
|
| #include "content/public/common/content_constants.h"
|
| -#include "content/public/common/content_features.h"
|
| #include "content/public/common/content_paths.h"
|
| #include "content/public/common/content_switches.h"
|
| #include "content/public/common/renderer_preferences.h"
|
| @@ -828,7 +828,7 @@ void RenderThreadImpl::Init(
|
| base::Bind(&RenderThreadImpl::OnSyncMemoryPressure,
|
| base::Unretained(this))));
|
|
|
| - if (base::FeatureList::IsEnabled(features::kMemoryCoordinator)) {
|
| + if (base::FeatureList::IsEnabled(base::features::kMemoryCoordinator)) {
|
| // Disable MemoryPressureListener when memory coordinator is enabled.
|
| base::MemoryPressureListener::SetNotificationsSuppressed(true);
|
|
|
|
|