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

Unified Diff: content/shell/android/java/src/org/chromium/content_shell/ShellManager.java

Issue 25040002: Enables fullscreen subtitle and media control from Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@build_hack
Patch Set: rebased, +option flag Created 7 years 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: content/shell/android/java/src/org/chromium/content_shell/ShellManager.java
diff --git a/content/shell/android/java/src/org/chromium/content_shell/ShellManager.java b/content/shell/android/java/src/org/chromium/content_shell/ShellManager.java
index aad119716bb037582d6d59c34c68cba40865a031..8ef8e4b1535f94cbf45f9fa72ccc390aa7ce5172 100644
--- a/content/shell/android/java/src/org/chromium/content_shell/ShellManager.java
+++ b/content/shell/android/java/src/org/chromium/content_shell/ShellManager.java
@@ -85,6 +85,14 @@ public class ShellManager extends FrameLayout {
nativeLaunchShell(url);
}
+ /**
+ * Enter or leave overlay video mode.
Ted C 2013/12/26 23:06:15 same comment about the missing @param
+ */
+ public void setOverlayVideoMode(boolean enabled) {
+ if (mContentViewRenderView == null) return;
+ mContentViewRenderView.setOverlayVideoMode(enabled);
+ }
+
@SuppressWarnings("unused")
@CalledByNative
private Object createShell() {

Powered by Google App Engine
This is Rietveld 408576698