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

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

Issue 2635773003: Implement Win 10 onboarding content logic (Closed)
Patch Set: 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 bbc91a181abe8957edce8c2ecf29eb65265c58f2..a4e1415378c5f4faed0c5f659d8e7163ddec6f1d 100644
--- a/chrome/browser/ui/startup/startup_browser_creator_impl.cc
+++ b/chrome/browser/ui/startup/startup_browser_creator_impl.cc
@@ -279,11 +279,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