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

Unified Diff: components/html_viewer/html_frame.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 | « components/html_viewer/html_frame.h ('k') | components/html_viewer/media_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/html_viewer/html_frame.cc
diff --git a/components/html_viewer/html_frame.cc b/components/html_viewer/html_frame.cc
index 22f3ca9836ce93fe456cc20806c4b248bf7bdce3..24d4984ea725e48ee4c57bd2d0a99cdb4248d3bb 100644
--- a/components/html_viewer/html_frame.cc
+++ b/components/html_viewer/html_frame.cc
@@ -315,9 +315,11 @@ blink::WebMediaPlayer* HTMLFrame::createMediaPlayer(
blink::WebMediaPlayerClient* client,
blink::WebMediaPlayerEncryptedMediaClient* encrypted_client,
blink::WebContentDecryptionModule* initial_cdm,
- const blink::WebString& sink_id) {
+ const blink::WebString& sink_id,
+ blink::WebMediaSession* session) {
return global_state()->media_factory()->CreateMediaPlayer(
- frame, url, client, encrypted_client, initial_cdm, GetApp()->shell());
+ frame, url, client, encrypted_client, initial_cdm, session,
+ GetApp()->shell());
}
blink::WebFrame* HTMLFrame::createChildFrame(
« no previous file with comments | « components/html_viewer/html_frame.h ('k') | components/html_viewer/media_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698