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

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: Fix metrics by keeping right number of tabs restored. 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
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 base::FieldTrial* trial =
15 TabLoader::RestoreTabs(tabs, restore_started); 16 base::FieldTrialList::Find("SessionRestoreBackgroundLoading");
17 // If there is no trial, enable experiment to get coverage on the perf
18 // waterfall.
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

Powered by Google App Engine
This is Rietveld 408576698