diff options
author | qinmin@chromium.org <qinmin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-12 02:21:57 +0000 |
---|---|---|
committer | qinmin@chromium.org <qinmin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-12 02:21:57 +0000 |
commit | 00f53cdf3f174615d04fc38897a49635fb3193b9 (patch) | |
tree | 604442d979f8d206b1b75776c4d484b310c8a0c7 /content/public | |
parent | d3199d3d5c66276af2050195f868158d8abf87ec (diff) | |
download | chromium_src-00f53cdf3f174615d04fc38897a49635fb3193b9.zip chromium_src-00f53cdf3f174615d04fc38897a49635fb3193b9.tar.gz chromium_src-00f53cdf3f174615d04fc38897a49635fb3193b9.tar.bz2 |
Don't enable alpha blending for legacy fullscreen video implementation
There is some bugs with Samsung Galaxy devices when setting the surface holder to translucent and setting it back.
Since the legacy fullscreen video implementation doesn't need alpha blending, disable it.
BUG=33309
Review URL: https://codereview.chromium.org/134933002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244411 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public')
-rw-r--r-- | content/public/android/java/src/org/chromium/content/common/ContentSwitches.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/public/android/java/src/org/chromium/content/common/ContentSwitches.java b/content/public/android/java/src/org/chromium/content/common/ContentSwitches.java index c2c68c2..a3b3cd5 100644 --- a/content/public/android/java/src/org/chromium/content/common/ContentSwitches.java +++ b/content/public/android/java/src/org/chromium/content/common/ContentSwitches.java @@ -71,6 +71,10 @@ public abstract class ContentSwitches { // Whether to disable the click delay by sending click events during double tap public static final String DISABLE_CLICK_DELAY = "disable-click-delay"; + // Native switch - content_switches::kEnableOverlayFullscreenVideoSubtitle + public static final String ENABLE_OVERLAY_FULLSCREEN_VIDEO_SUBTITLE = + "enable-overlay-fullscreen-video-subtitle"; + // Prevent instantiation. private ContentSwitches() {} } |