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

Unified Diff: chrome/browser/memory/tab_manager.cc

Issue 1914143002: Experimental 'purging and suspending' backgrounded tabs behind the flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address on dcheng@'s review Created 4 years, 7 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/memory/tab_manager.cc
diff --git a/chrome/browser/memory/tab_manager.cc b/chrome/browser/memory/tab_manager.cc
index de82f58f8eaf193469a31e878cd0bef17af5b9ee..b304289948d5fbc1d9702bd99ee6c86bb23b4c03 100644
--- a/chrome/browser/memory/tab_manager.cc
+++ b/chrome/browser/memory/tab_manager.cc
@@ -41,6 +41,7 @@
#include "chrome/browser/ui/tabs/tab_utils.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_features.h"
+#include "chrome/common/chrome_switches.h"
#include "chrome/common/url_constants.h"
#include "components/metrics/system_memory_stats_recorder.h"
#include "components/variations/variations_associated_data.h"
@@ -484,7 +485,7 @@ void TabManager::AddTabStats(const TabStripModel* model,
bool is_app,
bool active_model,
TabStatsList* stats_list) {
-for (int i = 0; i < model->count(); i++) {
+ for (int i = 0; i < model->count(); i++) {
WebContents* contents = model->GetWebContentsAt(i);
if (!contents->IsCrashed()) {
TabStats stats;
@@ -541,6 +542,37 @@ void TabManager::UpdateTimerCallback() {
// This starts the CrOS specific OOM adjustments in /proc/<pid>/oom_score_adj.
delegate_->AdjustOomPriorities(stats_list);
#endif
+
+ PurgeAndSuspendBackgroundedTabs();
+}
+
+void TabManager::PurgeAndSuspendBackgroundedTabs() {
+ const base::CommandLine& command_line =
+ *base::CommandLine::ForCurrentProcess();
+ if (!command_line.HasSwitch(switches::kPurgeAndSuspendTime))
+ return;
+ int purge_and_suspend_time = 0;
+ if (!base::StringToInt(
+ command_line.GetSwitchValueASCII(switches::kPurgeAndSuspendTime),
+ &purge_and_suspend_time)) {
+ return;
+ }
+ if (purge_and_suspend_time <= 0)
+ return;
+ auto purge_and_suspend_time_threshold = NowTicks() -
+ base::TimeDelta::FromSeconds(purge_and_suspend_time);
+ auto tab_stats = GetUnsortedTabStats();
+ for (auto& tab : tab_stats) {
+ if (!tab.render_process_host->IsProcessBackgrounded())
+ continue;
+ // TODO(hajimehoshi): Now calling PurgeAndSuspend is implemented without
+ // timers for simplicity, so PurgeAndSuspend is called even after the
+ // renderer is purged and suspended once. This should be replaced with
+ // timers if we want necessary and sufficient signals.
+ if (tab.last_active > purge_and_suspend_time_threshold)
+ continue;
+ tab.render_process_host->PurgeAndSuspend();
+ }
}
bool TabManager::CanDiscardTab(int64_t target_web_contents_id) const {

Powered by Google App Engine
This is Rietveld 408576698