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

Unified Diff: chrome/browser/about_flags.cc

Issue 1076013002: Added stub MediaSourcePlayer for developing behind the flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed binding for SetVideoSurface Created 5 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/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index ad25f94f100da7e064a1a05e38671da5c4604d9d..406fa32c0ffc87578e165a47454268aa3f3f1146 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -723,6 +723,15 @@ const Experiment kExperiments[] = {
kOsAll,
SINGLE_VALUE_TYPE(switches::kDisableMediaSource)
},
+#if defined(OS_ANDROID)
qinmin 2015/04/15 18:12:47 do we really need about flags for now? I think the
timav 2015/04/22 23:44:38 Removed completely from this file
+ {
+ "enable-media-player-v2",
qinmin 2015/04/15 18:12:47 Be more clear about this, rather than "enable-medi
timav 2015/04/22 23:44:38 I changed the name of the switch, but here it does
+ IDS_FLAGS_ENABLE_MEDIA_PLAYER_V2_NAME,
+ IDS_FLAGS_ENABLE_MEDIA_PLAYER_V2_DESCRIPTION,
+ kOsAndroid,
+ SINGLE_VALUE_TYPE(switches::kEnableMediaPlayerV2)
+ },
+#endif // defined(OS_ANDROID)
{
"disable-encrypted-media",
IDS_FLAGS_DISABLE_ENCRYPTED_MEDIA_NAME,

Powered by Google App Engine
This is Rietveld 408576698