| Index: content/browser/memory/memory_coordinator.cc
|
| diff --git a/content/browser/memory/memory_coordinator.cc b/content/browser/memory/memory_coordinator.cc
|
| index 517aaedc34a1a13f696d9e0532c5c4c9117458a1..270b06566eda9f7f0b1e1a955d585b93e2d2424b 100644
|
| --- a/content/browser/memory/memory_coordinator.cc
|
| +++ b/content/browser/memory/memory_coordinator.cc
|
| @@ -8,7 +8,6 @@
|
| #include "content/public/browser/content_browser_client.h"
|
| #include "content/public/browser/render_process_host.h"
|
| #include "content/public/common/content_client.h"
|
| -#include "content/public/common/content_features.h"
|
|
|
| namespace content {
|
|
|
| @@ -120,14 +119,6 @@ mojom::MemoryState MemoryCoordinator::GetMemoryState(
|
| return iter->second.memory_state;
|
| }
|
|
|
| -void MemoryCoordinator::EnableFeaturesForTesting() {
|
| - base::FeatureList::ClearInstanceForTesting();
|
| - std::unique_ptr<base::FeatureList> feature_list(new base::FeatureList);
|
| - feature_list->InitializeFromCommandLine(features::kMemoryCoordinator.name,
|
| - "");
|
| - base::FeatureList::SetInstance(std::move(feature_list));
|
| -}
|
| -
|
| base::MemoryState MemoryCoordinator::GetCurrentMemoryState() const {
|
| return base::MemoryState::UNKNOWN;
|
| }
|
|
|