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

Unified Diff: content/browser/media/android/browser_media_player_manager.cc

Issue 41123002: Request video element to enter fullscreen when playing protected content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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: content/browser/media/android/browser_media_player_manager.cc
diff --git a/content/browser/media/android/browser_media_player_manager.cc b/content/browser/media/android/browser_media_player_manager.cc
index 02e90b4b611b648c57e80076121753aa0e29615e..3529ebe2018911be013b98e20a78245417f6fee3 100644
--- a/content/browser/media/android/browser_media_player_manager.cc
+++ b/content/browser/media/android/browser_media_player_manager.cc
@@ -17,6 +17,7 @@
#include "content/public/browser/storage_partition.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_delegate.h"
+#include "content/public/common/content_switches.h"
#include "media/base/android/media_drm_bridge.h"
#include "media/base/android/media_player_bridge.h"
#include "media/base/android/media_source_player.h"
@@ -325,7 +326,13 @@ void BrowserMediaPlayerManager::OnProtectedSurfaceRequested(int player_id) {
return;
}
- OnEnterFullscreen(player_id);
+ // Request the video element to enter fullscreen if there is no gesture
+ // requirement.
+ // TODO(qinmin): make this flag default on android.
+ if (CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kDisableGestureRequirementForMediaFullscreen)) {
+ Send(new MediaPlayerMsg_RequestFullscreen(routing_id(), player_id));
+ }
xhwang 2013/10/25 18:21:59 newbie question: How is this related to OnEnterFul
qinmin 2013/10/25 20:06:13 So when this IPC gets sent to the render process,
}
void BrowserMediaPlayerManager::OnKeyAdded(int media_keys_id,

Powered by Google App Engine
This is Rietveld 408576698