Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(916)

Unified Diff: content/browser/devtools/protocol/memory_handler.cc

Issue 2819493002: [Test] Move DelegatedFrameEvictor into components -public_deps (Closed)
Patch Set: use if null instead of feature Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/browser_main_loop.cc ('k') | content/browser/dom_storage/dom_storage_context_wrapper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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");
« no previous file with comments | « content/browser/browser_main_loop.cc ('k') | content/browser/dom_storage/dom_storage_context_wrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698