| Index: content/browser/devtools/protocol/memory_handler.cc
|
| diff --git a/content/browser/devtools/protocol/memory_handler.cc b/content/browser/devtools/protocol/memory_handler.cc
|
| index bdc14bc821fb1b22f0b65b10c3c439db35da0769..2f74fc72fad86ec5ce716e910e9877db89144897 100644
|
| --- a/content/browser/devtools/protocol/memory_handler.cc
|
| +++ b/content/browser/devtools/protocol/memory_handler.cc
|
| @@ -4,10 +4,10 @@
|
|
|
| #include "content/browser/devtools/protocol/memory_handler.h"
|
|
|
| +#include "base/base_features.h"
|
| #include "base/memory/memory_pressure_listener.h"
|
| #include "base/strings/stringprintf.h"
|
| #include "content/browser/memory/memory_pressure_controller_impl.h"
|
| -#include "content/public/common/content_features.h"
|
|
|
| namespace content {
|
| namespace protocol {
|
| @@ -24,7 +24,7 @@ void MemoryHandler::Wire(UberDispatcher* dispatcher) {
|
|
|
| Response MemoryHandler::SetPressureNotificationsSuppressed(
|
| bool suppressed) {
|
| - if (base::FeatureList::IsEnabled(features::kMemoryCoordinator)) {
|
| + if (base::FeatureList::IsEnabled(base::features::kMemoryCoordinator)) {
|
| return Response::Error(
|
| "Cannot enable/disable notifications when memory coordinator is "
|
| "enabled");
|
|
|