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

Unified Diff: chrome/browser/ui/startup/startup_browser_creator_impl.cc

Issue 2627363002: Enabling new FRE and launch flow by default on Win 10. (Closed)
Patch Set: ProfilesWithoutPages update Created 3 years, 11 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/ui/startup/startup_browser_creator_impl.cc
diff --git a/chrome/browser/ui/startup/startup_browser_creator_impl.cc b/chrome/browser/ui/startup/startup_browser_creator_impl.cc
index 1b5e7da057378d8b1f72c349beac791d670feeeb..c8dbac42b2979e97a7101e68ef48a5504be6cce6 100644
--- a/chrome/browser/ui/startup/startup_browser_creator_impl.cc
+++ b/chrome/browser/ui/startup/startup_browser_creator_impl.cc
@@ -286,7 +286,7 @@ bool UseConsolidatedFlow() {
#if defined(OS_WIN)
// TODO(tmartino): Add a Win10+ specific experiment.
Peter Kasting 2017/02/01 02:09:51 Is this TODO still unimplemented?
tmartino 2017/02/01 21:04:33 Whoops, no. This change resolves it.
if (base::win::GetVersion() >= base::win::VERSION_WIN10)
- return false;
+ return base::FeatureList::IsEnabled(features::kEnableWelcomeWin10);
#endif // defined(OS_WIN)
return base::FeatureList::IsEnabled(features::kUseConsolidatedStartupFlow);
}

Powered by Google App Engine
This is Rietveld 408576698