| Index: content/browser/memory/memory_coordinator_impl.cc
|
| diff --git a/content/browser/memory/memory_coordinator_impl.cc b/content/browser/memory/memory_coordinator_impl.cc
|
| index ffd91b6657b791441f73bbe22efe61f4837c7aae..54d9787b6942867d93b17d585b3e26212b99d6f1 100644
|
| --- a/content/browser/memory/memory_coordinator_impl.cc
|
| +++ b/content/browser/memory/memory_coordinator_impl.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "content/browser/memory/memory_coordinator_impl.h"
|
|
|
| +#include "base/base_features.h"
|
| #include "base/memory/memory_coordinator_client_registry.h"
|
| #include "base/memory/ptr_util.h"
|
| #include "base/metrics/histogram_macros.h"
|
| @@ -18,7 +19,6 @@
|
| #include "content/public/browser/notification_types.h"
|
| #include "content/public/browser/render_process_host.h"
|
| #include "content/public/browser/render_widget_host.h"
|
| -#include "content/public/common/content_features.h"
|
| #include "mojo/public/cpp/bindings/binding.h"
|
|
|
| namespace content {
|
| @@ -150,7 +150,7 @@ MemoryCoordinator* MemoryCoordinator::GetInstance() {
|
|
|
| // static
|
| MemoryCoordinatorImpl* MemoryCoordinatorImpl::GetInstance() {
|
| - if (!base::FeatureList::IsEnabled(features::kMemoryCoordinator))
|
| + if (!base::FeatureList::IsEnabled(base::features::kMemoryCoordinator))
|
| return nullptr;
|
| return base::Singleton<MemoryCoordinatorImpl,
|
| MemoryCoordinatorImplSingletonTraits>::get();
|
|
|