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

Unified Diff: media/base/android/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 | « media/base/android/media_player_bridge.h ('k') | media/base/android/media_player_bridge_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/android/media_player_bridge.cc
diff --git a/media/base/android/media_player_bridge.cc b/media/base/android/media_player_bridge.cc
index deaba14bcb63e361460f79bc24634a2d085757da..f0738ba07e220512b2df2fd306653f5acc0d0380 100644
--- a/media/base/android/media_player_bridge.cc
+++ b/media/base/android/media_player_bridge.cc
@@ -32,11 +32,13 @@ MediaPlayerBridge::MediaPlayerBridge(
MediaPlayerManager* manager,
const OnDecoderResourcesReleasedCB& on_decoder_resources_released_cb,
const GURL& frame_url,
- bool allow_credentials)
+ bool allow_credentials,
+ int session_id)
: MediaPlayerAndroid(player_id,
manager,
on_decoder_resources_released_cb,
- frame_url),
+ frame_url,
+ session_id),
prepared_(false),
pending_play_(false),
should_seek_on_prepare_(false),
@@ -51,8 +53,7 @@ MediaPlayerBridge::MediaPlayerBridge(
can_seek_backward_(true),
volume_(-1.0),
allow_credentials_(allow_credentials),
- weak_factory_(this) {
-}
+ weak_factory_(this) {}
MediaPlayerBridge::~MediaPlayerBridge() {
if (!j_media_player_bridge_.is_null()) {
« no previous file with comments | « media/base/android/media_player_bridge.h ('k') | media/base/android/media_player_bridge_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698