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

Side by Side 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, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/media/android/browser_media_player_manager.h" 5 #include "content/browser/media/android/browser_media_player_manager.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "content/browser/android/content_view_core_impl.h" 8 #include "content/browser/android/content_view_core_impl.h"
9 #include "content/browser/media/android/browser_demuxer_android.h" 9 #include "content/browser/media/android/browser_demuxer_android.h"
10 #include "content/browser/media/android/media_resource_getter_impl.h" 10 #include "content/browser/media/android/media_resource_getter_impl.h"
11 #include "content/browser/renderer_host/render_view_host_impl.h" 11 #include "content/browser/renderer_host/render_view_host_impl.h"
12 #include "content/browser/web_contents/web_contents_view_android.h" 12 #include "content/browser/web_contents/web_contents_view_android.h"
13 #include "content/common/media/media_player_messages_android.h" 13 #include "content/common/media/media_player_messages_android.h"
14 #include "content/public/browser/browser_context.h" 14 #include "content/public/browser/browser_context.h"
15 #include "content/public/browser/render_process_host.h" 15 #include "content/public/browser/render_process_host.h"
16 #include "content/public/browser/render_view_host.h" 16 #include "content/public/browser/render_view_host.h"
17 #include "content/public/browser/storage_partition.h" 17 #include "content/public/browser/storage_partition.h"
18 #include "content/public/browser/web_contents.h" 18 #include "content/public/browser/web_contents.h"
19 #include "content/public/browser/web_contents_delegate.h" 19 #include "content/public/browser/web_contents_delegate.h"
20 #include "content/public/common/content_switches.h"
20 #include "media/base/android/media_drm_bridge.h" 21 #include "media/base/android/media_drm_bridge.h"
21 #include "media/base/android/media_player_bridge.h" 22 #include "media/base/android/media_player_bridge.h"
22 #include "media/base/android/media_source_player.h" 23 #include "media/base/android/media_source_player.h"
23 #include "media/base/media_switches.h" 24 #include "media/base/media_switches.h"
24 25
25 using media::MediaDrmBridge; 26 using media::MediaDrmBridge;
26 using media::MediaPlayerAndroid; 27 using media::MediaPlayerAndroid;
27 using media::MediaPlayerBridge; 28 using media::MediaPlayerBridge;
28 using media::MediaPlayerManager; 29 using media::MediaPlayerManager;
29 using media::MediaSourcePlayer; 30 using media::MediaSourcePlayer;
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 return; 319 return;
319 } 320 }
320 321
321 // If the player is pending approval, wait for the approval to happen. 322 // If the player is pending approval, wait for the approval to happen.
322 if (media_keys_ids_pending_approval_.end() != 323 if (media_keys_ids_pending_approval_.end() !=
323 media_keys_ids_pending_approval_.find(player_id)) { 324 media_keys_ids_pending_approval_.find(player_id)) {
324 pending_fullscreen_player_id_ = player_id; 325 pending_fullscreen_player_id_ = player_id;
325 return; 326 return;
326 } 327 }
327 328
328 OnEnterFullscreen(player_id); 329 // Request the video element to enter fullscreen if there is no gesture
330 // requirement.
331 // TODO(qinmin): make this flag default on android.
332 if (CommandLine::ForCurrentProcess()->HasSwitch(
333 switches::kDisableGestureRequirementForMediaFullscreen)) {
334 Send(new MediaPlayerMsg_RequestFullscreen(routing_id(), player_id));
335 }
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,
329 } 336 }
330 337
331 void BrowserMediaPlayerManager::OnKeyAdded(int media_keys_id, 338 void BrowserMediaPlayerManager::OnKeyAdded(int media_keys_id,
332 const std::string& session_id) { 339 const std::string& session_id) {
333 Send(new MediaKeysMsg_KeyAdded(routing_id(), media_keys_id, session_id)); 340 Send(new MediaKeysMsg_KeyAdded(routing_id(), media_keys_id, session_id));
334 } 341 }
335 342
336 void BrowserMediaPlayerManager::OnKeyError( 343 void BrowserMediaPlayerManager::OnKeyError(
337 int media_keys_id, 344 int media_keys_id,
338 const std::string& session_id, 345 const std::string& session_id,
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 if (pending_fullscreen_player_id_ != media_keys_id) 689 if (pending_fullscreen_player_id_ != media_keys_id)
683 return; 690 return;
684 691
685 pending_fullscreen_player_id_ = -1; 692 pending_fullscreen_player_id_ = -1;
686 MediaPlayerAndroid* player = GetPlayer(media_keys_id); 693 MediaPlayerAndroid* player = GetPlayer(media_keys_id);
687 if (player->IsPlaying()) 694 if (player->IsPlaying())
688 OnProtectedSurfaceRequested(media_keys_id); 695 OnProtectedSurfaceRequested(media_keys_id);
689 } 696 }
690 697
691 } // namespace content 698 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698