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

Unified Diff: content/browser/memory/memory_coordinator_impl.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
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();

Powered by Google App Engine
This is Rietveld 408576698