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

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

Issue 1062243002: Change logic to enable for group Enabled (for A/B testing). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sessions/session_restore_delegate.cc
diff --git a/chrome/browser/sessions/session_restore_delegate.cc b/chrome/browser/sessions/session_restore_delegate.cc
index e1b8d823040f72235ac821546ff4aaba548c07e6..67e1d98e0b5f7a447eeff96b01a5892fe3c246b5 100644
--- a/chrome/browser/sessions/session_restore_delegate.cc
+++ b/chrome/browser/sessions/session_restore_delegate.cc
@@ -17,7 +17,7 @@ void SessionRestoreDelegate::RestoreTabs(
base::FieldTrial* trial =
base::FieldTrialList::Find("SessionRestoreBackgroundLoading");
bool active_only = true;
- if (!trial || trial->group_name() != "Disabled") {
+ if (!trial || trial->group_name() == "Enabled") {
TabLoader::RestoreTabs(tabs, restore_started);
active_only = false;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698