summaryrefslogtreecommitdiffstats
path: root/android_webview
diff options
context:
space:
mode:
authorqinmin@chromium.org <qinmin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-07 02:35:40 +0000
committerqinmin@chromium.org <qinmin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-07 02:35:40 +0000
commit2c528de832a9edea0bbad61e35cc45e831505a71 (patch)
tree2b749126d7e195a982f25204cf31ede38dbda764 /android_webview
parent1b4ec385671074ce4b857344acc11346c1f2da47 (diff)
downloadchromium_src-2c528de832a9edea0bbad61e35cc45e831505a71.zip
chromium_src-2c528de832a9edea0bbad61e35cc45e831505a71.tar.gz
chromium_src-2c528de832a9edea0bbad61e35cc45e831505a71.tar.bz2
enable subtitle support and the new fullscreen video
This CL enables the subtitle and new fullscreen video for chrome. The new fullscreen mode has been in testing for a while, this Cl will enable this new fullscreen mode. BUG=262945 Review URL: https://codereview.chromium.org/182493003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255500 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview')
-rw-r--r--android_webview/lib/main/aw_main_delegate.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/android_webview/lib/main/aw_main_delegate.cc b/android_webview/lib/main/aw_main_delegate.cc
index 08b2c0e..1d5d5be 100644
--- a/android_webview/lib/main/aw_main_delegate.cc
+++ b/android_webview/lib/main/aw_main_delegate.cc
@@ -75,6 +75,9 @@ bool AwMainDelegate::BasicStartupComplete(int* exit_code) {
// File system API not supported (requires some new API; internal bug 6930981)
cl->AppendSwitch(switches::kDisableFileSystem);
+ // Fullscreen video with subtitle is not yet supported.
+ cl->AppendSwitch(switches::kDisableOverlayFullscreenVideoSubtitle);
+
#if defined(VIDEO_HOLE)
// Support EME/L1 with hole-punching.
cl->AppendSwitch(switches::kMediaDrmEnableNonCompositing);