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

Unified Diff: chrome/common/chrome_features.cc

Issue 2450623002: [MD Bookmarks] Add skeleton for Material Design Bookmarks (Closed)
Patch Set: Created 4 years, 2 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/common/chrome_features.cc
diff --git a/chrome/common/chrome_features.cc b/chrome/common/chrome_features.cc
index ae6adbbd4f1739245dbc21ac79b681bbbcec0a8f..759e435c033b4ae873ebf90e834585efb86bbb07 100644
--- a/chrome/common/chrome_features.cc
+++ b/chrome/common/chrome_features.cc
@@ -84,21 +84,16 @@ 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 YouTube Flash videos to be overridden.
-const base::Feature kOverrideYouTubeFlashEmbed{
- "OverrideYouTubeFlashEmbed", base::FEATURE_ENABLED_BY_DEFAULT};
-
-// Enables or disables push subscriptions keeping Chrome running in the
-// background when closed.
-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};
@@ -108,6 +103,15 @@ const base::Feature kMaterialDesignHistory{
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};
+
+// Enables or disables push subscriptions keeping Chrome running in the
+// background when closed.
+const base::Feature kPushMessagingBackgroundMode{
+ "PushMessagingBackgroundMode", base::FEATURE_DISABLED_BY_DEFAULT};
Dan Beam 2016/10/25 18:05:51 Y U MOVE?
calamity 2016/10/28 05:58:22 Match order in header. MD WebUIs should stick toge
+
// 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