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

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

Issue 1308983005: NOT FOR LANDING Implement WebMediaSession (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add forward declaration Created 4 years, 11 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
« no previous file with comments | « no previous file | components/html_viewer/html_frame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 269e395884f739634a6d79ad977f470581f8c900..878208ac2c164b5dd455512f1b88460896daeaf9 100644
--- a/chrome/browser/media/android/remote/remote_media_player_bridge.cc
+++ b/chrome/browser/media/android/remote/remote_media_player_bridge.cc
@@ -36,11 +36,15 @@ void DoNothing(int /*i*/) {}
namespace remote_media {
RemoteMediaPlayerBridge::RemoteMediaPlayerBridge(
- MediaPlayerAndroid* local_player, const std::string& user_agent,
- bool hide_url_log, RemoteMediaPlayerManager* manager)
- : MediaPlayerAndroid(local_player->player_id(), manager,
+ MediaPlayerAndroid* local_player,
+ const std::string& user_agent,
+ bool hide_url_log,
+ RemoteMediaPlayerManager* manager)
+ : MediaPlayerAndroid(local_player->player_id(),
+ manager,
base::Bind(&DoNothing),
- local_player->frame_url()),
+ local_player->frame_url(),
+ local_player->session_id()),
start_position_millis_(0),
local_player_(local_player),
width_(0),
« no previous file with comments | « no previous file | components/html_viewer/html_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698