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

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

Issue 2578843002: Implement Win 10 onboarding content logic (Closed)
Patch Set: Fixed comments Created 4 years 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 214243e6cbb66dc3dda73aa856f4eae4792fb0b2..1b5e7da057378d8b1f72c349beac791d670feeeb 100644
--- a/chrome/browser/ui/startup/startup_browser_creator_impl.cc
+++ b/chrome/browser/ui/startup/startup_browser_creator_impl.cc
@@ -281,11 +281,10 @@ void AppendTabs(const StartupTabs& from, StartupTabs* to) {
}
// Determines whether the Consolidated startup flow should be used, based on
-// OS, OS version, and the kUseConsolidatedStartupFlow Feature.
+// the kUseConsolidatedStartupFlow Feature. Not enabled on Windows 10+.
bool UseConsolidatedFlow() {
#if defined(OS_WIN)
- // TODO(tmartino): Enable for Windows 10+ once relevant Win 10-specific logic
- // is added to StartupTabProvider.
+ // TODO(tmartino): Add a Win10+ specific experiment.
if (base::win::GetVersion() >= base::win::VERSION_WIN10)
return false;
#endif // defined(OS_WIN)
« no previous file with comments | « chrome/browser/ui/startup/startup_browser_creator.cc ('k') | chrome/browser/ui/startup/startup_tab_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698