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

Unified Diff: chrome/common/chrome_features.cc

Issue 2450623002: [MD Bookmarks] Add skeleton for Material Design Bookmarks (Closed)
Patch Set: address comments Created 4 years, 1 month 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/common/chrome_features.cc
diff --git a/chrome/common/chrome_features.cc b/chrome/common/chrome_features.cc
index 8b3cd4068f12180901335e7f2bd402003e01e981..9d786c0a705a009b857f50c5225a20595638a120 100644
--- a/chrome/common/chrome_features.cc
+++ b/chrome/common/chrome_features.cc
@@ -84,12 +84,25 @@ const base::Feature kLinuxObsoleteSystemIsEndOfTheLine{
"LinuxObsoleteSystemIsEndOfTheLine", base::FEATURE_DISABLED_BY_DEFAULT};
#endif
+// Enables or disables the Material Design version of chrome://bookmarks.
+const base::Feature kMaterialDesignBookmarks{"MaterialDesignBookmarks",
+ base::FEATURE_DISABLED_BY_DEFAULT};
+
#if defined(ENABLE_EXTENSIONS)
// Enabled or disabled the Material Design version of chrome://extensions.
const base::Feature kMaterialDesignExtensions{
"MaterialDesignExtensions", base::FEATURE_DISABLED_BY_DEFAULT};
#endif
+// Enables or disables the Material Design version of chrome://history.
+const base::Feature kMaterialDesignHistory{"MaterialDesignHistory",
+ base::FEATURE_ENABLED_BY_DEFAULT};
+
+// Enables or disables the Material Design version of chrome://settings.
+// Also affects chrome://help.
+const base::Feature kMaterialDesignSettings{"MaterialDesignSettings",
+ base::FEATURE_DISABLED_BY_DEFAULT};
+
// Enables YouTube Flash videos to be overridden.
const base::Feature kOverrideYouTubeFlashEmbed{
"OverrideYouTubeFlashEmbed", base::FEATURE_ENABLED_BY_DEFAULT};
@@ -105,15 +118,6 @@ const base::Feature kPrintScaling{"PrintScaling",
const base::Feature kPushMessagingBackgroundMode{
"PushMessagingBackgroundMode", base::FEATURE_DISABLED_BY_DEFAULT};
-// Enables or disables the Material Design version of chrome://history.
-const base::Feature kMaterialDesignHistory{
- "MaterialDesignHistory", base::FEATURE_ENABLED_BY_DEFAULT};
-
-// Enables or disables the Material Design version of chrome://settings.
-// Also affects chrome://help.
-const base::Feature kMaterialDesignSettings{
- "MaterialDesignSettings", base::FEATURE_DISABLED_BY_DEFAULT};
-
// Enables the use of native notification centers instead of using the Message
// Center for displaying the toasts.
#if defined(OS_MACOSX)

Powered by Google App Engine
This is Rietveld 408576698