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

Unified Diff: chrome/browser/android/chrome_feature_list.cc

Issue 1847063005: [Media, UI] Change MediaNotification style to MediaStyle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed Mounir's comments, fixed time, origin and STOP_ACTION Created 4 years, 8 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/android/chrome_feature_list.cc
diff --git a/chrome/browser/android/chrome_feature_list.cc b/chrome/browser/android/chrome_feature_list.cc
index c949f6ddaba348fd83dd040b744ffcd92b9871ca..ea3221198bb75ce107294372a7d3649953fbeb66 100644
--- a/chrome/browser/android/chrome_feature_list.cc
+++ b/chrome/browser/android/chrome_feature_list.cc
@@ -26,6 +26,7 @@ namespace {
// this array may either refer to features defined in this file (above) or in
// other locations in the code base (e.g. chrome/, components/, etc).
const base::Feature* kFeaturesExposedToJava[] = {
+ &kMediaStyleNotification,
&kNTPOfflinePagesFeature,
&kNTPSnippetsFeature,
&kNTPToolbarFeature,
@@ -37,6 +38,10 @@ const base::Feature* kFeaturesExposedToJava[] = {
} // namespace
+const base::Feature kMediaStyleNotification{
Bernhard Bauer 2016/04/14 12:58:20 Space before opening brace.
Zhiqiang Zhang (Slow) 2016/04/14 13:09:17 Done.
+ "MediaStyleNotification", base::FEATURE_DISABLED_BY_DEFAULT
+};
+
const base::Feature kNTPOfflinePagesFeature {
"NTPOfflinePages", base::FEATURE_DISABLED_BY_DEFAULT
};

Powered by Google App Engine
This is Rietveld 408576698