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

Unified Diff: media/blink/webmediaplayer_params.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/blink/webmediaplayer_params.h ('k') | third_party/WebKit/Source/modules/mediasession/MediaSession.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/blink/webmediaplayer_params.cc
diff --git a/media/blink/webmediaplayer_params.cc b/media/blink/webmediaplayer_params.cc
index 530d5c91a8e3e0147707e20e03428474d63d1898..55ce99ab1f564e9f0b37079ef652e430e6f036fe 100644
--- a/media/blink/webmediaplayer_params.cc
+++ b/media/blink/webmediaplayer_params.cc
@@ -21,7 +21,8 @@ WebMediaPlayerParams::WebMediaPlayerParams(
const Context3DCB& context_3d_cb,
const AdjustAllocatedMemoryCB& adjust_allocated_memory_cb,
MediaPermission* media_permission,
- blink::WebContentDecryptionModule* initial_cdm)
+ blink::WebContentDecryptionModule* initial_cdm,
+ blink::WebMediaSession* session)
: defer_load_cb_(defer_load_cb),
audio_renderer_sink_(audio_renderer_sink),
media_log_(media_log),
@@ -31,7 +32,8 @@ WebMediaPlayerParams::WebMediaPlayerParams(
context_3d_cb_(context_3d_cb),
adjust_allocated_memory_cb_(adjust_allocated_memory_cb),
media_permission_(media_permission),
- initial_cdm_(initial_cdm) {}
+ initial_cdm_(initial_cdm),
+ session_(session) {}
WebMediaPlayerParams::~WebMediaPlayerParams() {}
« no previous file with comments | « media/blink/webmediaplayer_params.h ('k') | third_party/WebKit/Source/modules/mediasession/MediaSession.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698