| 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)
|
|
|