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

Unified Diff: chrome/browser/about_flags.cc

Issue 23903023: Add --mediadrm-enable-non-compositing flag for Chrome on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 7 years, 3 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 c26ac280c64768908943c1190024908c244245c9..c079ee7ff8daa0b95a5ba49fbc499782f2e9ccaf 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -755,6 +755,15 @@ const Experiment kExperiments[] = {
kOsMac | kOsWin | kOsAndroid,
SINGLE_VALUE_TYPE(switches::kOverrideEncryptedMediaCanPlayType)
},
+#if defined(OS_ANDROID)
+ {
+ "mediadrm-enable-non-compositing",
+ IDS_FLAGS_MEDIADRM_ENABLE_NON_COMPOSITING_NAME,
+ IDS_FLAGS_MEDIADRM_ENABLE_NON_COMPOSITING_DESCRIPTION,
+ kOsAndroid,
+ SINGLE_VALUE_TYPE(switches::kMediaDrmEnableNonCompositing)
+ },
+#endif // defined(OS_ANDROID)
{
"enable-opus-playback",
IDS_FLAGS_ENABLE_OPUS_PLAYBACK_NAME,

Powered by Google App Engine
This is Rietveld 408576698