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

Unified Diff: chrome/browser/sessions/tab_loader.cc

Issue 2811083002: Move frame eviction into components (Closed)
Patch Set: Move features into base,and rename 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: chrome/browser/sessions/tab_loader.cc
diff --git a/chrome/browser/sessions/tab_loader.cc b/chrome/browser/sessions/tab_loader.cc
index 753f4e0493c23ad66dc15e7f1f37a6574ce3f7e1..81c45119f3e32826360a3dee936eb33b2e0cadfe 100644
--- a/chrome/browser/sessions/tab_loader.cc
+++ b/chrome/browser/sessions/tab_loader.cc
@@ -7,6 +7,7 @@
#include <algorithm>
#include <string>
+#include "base/base_features.h"
#include "base/memory/memory_coordinator_client_registry.h"
#include "base/memory/memory_coordinator_proxy.h"
#include "base/memory/memory_pressure_monitor.h"
@@ -25,7 +26,6 @@
#include "content/public/browser/render_widget_host.h"
#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser/web_contents.h"
-#include "content/public/common/content_features.h"
using content::NavigationController;
using content::RenderWidgetHost;
@@ -259,7 +259,7 @@ bool TabLoader::ShouldStopLoadingTabs() const {
if (g_max_loaded_tab_count_for_testing != 0 &&
started_to_load_count_ >= g_max_loaded_tab_count_for_testing)
return true;
- if (base::FeatureList::IsEnabled(features::kMemoryCoordinator))
+ if (base::FeatureList::IsEnabled(base::features::kMemoryCoordinator))
return base::MemoryCoordinatorProxy::GetInstance()->GetCurrentMemoryState()
!= base::MemoryState::NORMAL;
if (base::MemoryPressureMonitor::Get()) {

Powered by Google App Engine
This is Rietveld 408576698