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

Unified Diff: chrome/browser/media/android/remote/remote_media_player_bridge.cc

Issue 1640123004: Propagate media session id into MediaPlayerAndroid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pass-media-session-id-over-ipc
Patch Set: Rebase Created 4 years, 10 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: chrome/browser/media/android/remote/remote_media_player_bridge.cc
diff --git a/chrome/browser/media/android/remote/remote_media_player_bridge.cc b/chrome/browser/media/android/remote/remote_media_player_bridge.cc
index bcb4dab3453d1985b88eacba41fd007e6ea6eb9e..a1e335551365557093deb8e922f8e0f339a36b20 100644
--- a/chrome/browser/media/android/remote/remote_media_player_bridge.cc
+++ b/chrome/browser/media/android/remote/remote_media_player_bridge.cc
@@ -43,10 +43,12 @@ RemoteMediaPlayerBridge::RemoteMediaPlayerBridge(
const std::string& user_agent,
bool hide_url_log,
RemoteMediaPlayerManager* manager)
- : MediaPlayerAndroid(player_id,
- manager,
- base::Bind(&DoNothing),
- manager->GetLocalPlayer(player_id)->frame_url()),
+ : MediaPlayerAndroid(
+ player_id,
davve 2016/02/25 09:57:32 Is this reformat ok? Made by git cl format.
whywhat 2016/02/29 16:26:29 Yes. Might cause merge problems but is not a big d
+ manager,
+ base::Bind(&DoNothing),
+ manager->GetLocalPlayer(player_id)->frame_url(),
+ manager->GetLocalPlayer(player_id)->media_session_id()),
mlamouri (slow - plz ping) 2016/02/25 14:13:54 What does that mean for a remote player to have th
philipj_slow 2016/02/29 09:50:37 Looks like a problem brewing here, in the interact
whywhat 2016/02/29 16:26:29 AFAIK, the remote player won't use the media sessi
davve 2016/03/01 05:42:22 Right now there is no defined invalid id, but we c
philipj_slow 2016/03/03 11:10:52 OK, so if remote playback can be modeled as one or
width_(0),
height_(0),
hide_url_log_(hide_url_log),

Powered by Google App Engine
This is Rietveld 408576698