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

Unified Diff: chrome/common/chrome_features.cc

Issue 2902843002: Enable the new Incognito NTP (Closed)
Patch Set: Only enable the feature on Desktop. Created 3 years, 7 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/common/chrome_features.cc
diff --git a/chrome/common/chrome_features.cc b/chrome/common/chrome_features.cc
index bc2a1a241345150bf6955d2a5e38276c8fff8af3..088e185836fbc8198d50b8bddc6e06b9ab0036d6 100644
--- a/chrome/common/chrome_features.cc
+++ b/chrome/common/chrome_features.cc
@@ -205,7 +205,13 @@ extern const base::Feature kAcknowledgeNtpOverrideOnDeactivate{
// The material redesign of the Incognito NTP.
const base::Feature kMaterialDesignIncognitoNTP{
- "MaterialDesignIncognitoNTP", base::FEATURE_DISABLED_BY_DEFAULT};
+ "MaterialDesignIncognitoNTP",
+#if defined(OS_ANDROID)
+ base::FEATURE_DISABLED_BY_DEFAULT
+#else
+ base::FEATURE_ENABLED_BY_DEFAULT
+#endif
+};
// Enables or disables the Material Design version of chrome://settings.
// Also affects chrome://help.
« 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