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

Side by Side Diff: chrome/browser/sessions/session_restore_delegate.cc

Issue 1059343002: Add experiment to disable loading of background tabs during session restore. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comment about |active_tabs|. Created 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/sessions/session_restore_stats_collector.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/sessions/session_restore_delegate.h" 5 #include "chrome/browser/sessions/session_restore_delegate.h"
6 6
7 #include "base/metrics/field_trial.h"
7 #include "chrome/browser/sessions/session_restore_stats_collector.h" 8 #include "chrome/browser/sessions/session_restore_stats_collector.h"
8 #include "chrome/browser/sessions/tab_loader.h" 9 #include "chrome/browser/sessions/tab_loader.h"
9 10
10 // static 11 // static
11 void SessionRestoreDelegate::RestoreTabs( 12 void SessionRestoreDelegate::RestoreTabs(
12 const std::vector<RestoredTab>& tabs, 13 const std::vector<RestoredTab>& tabs,
13 const base::TimeTicks& restore_started) { 14 const base::TimeTicks& restore_started) {
14 SessionRestoreStatsCollector::TrackTabs(tabs, restore_started); 15 // TODO(georgesak): make tests aware of that behavior so that they succeed if
15 TabLoader::RestoreTabs(tabs, restore_started); 16 // tab loading is disabled.
17 base::FieldTrial* trial =
18 base::FieldTrialList::Find("SessionRestoreBackgroundLoading");
19 bool active_only = true;
20 if (!trial || trial->group_name() != "Disabled") {
21 TabLoader::RestoreTabs(tabs, restore_started);
22 active_only = false;
23 }
24 SessionRestoreStatsCollector::TrackTabs(tabs, restore_started, active_only);
16 } 25 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/sessions/session_restore_stats_collector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698