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

Unified Diff: media/mojo/services/mojo_renderer_impl.cc

Issue 728133002: Update mojo sdk to rev e01f9a49449381a5eb430c1fd88bf2cae73ec35a (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: android + ios gyp fixes Created 6 years, 1 month 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/mojo/services/mojo_demuxer_stream_impl.cc ('k') | mojo/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mojo/services/mojo_renderer_impl.cc
diff --git a/media/mojo/services/mojo_renderer_impl.cc b/media/mojo/services/mojo_renderer_impl.cc
index f93bfe1a8dbf4d28116d3b3d51f734b4b05bf6b6..0a6abe6e87f3b539684ac4cb6fa2e3868d55edfd 100644
--- a/media/mojo/services/mojo_renderer_impl.cc
+++ b/media/mojo/services/mojo_renderer_impl.cc
@@ -63,12 +63,16 @@ void MojoRendererImpl::Initialize(
demuxer_stream_provider_->GetStream(DemuxerStream::VIDEO);
mojo::DemuxerStreamPtr audio_stream;
- if (audio)
- mojo::BindToProxy(new MojoDemuxerStreamImpl(audio), &audio_stream);
+ if (audio) {
+ mojo::BindToProxy(new MojoDemuxerStreamImpl(audio), &audio_stream)
+ ->DidConnect();
+ }
mojo::DemuxerStreamPtr video_stream;
- if (video)
- mojo::BindToProxy(new MojoDemuxerStreamImpl(video), &video_stream);
+ if (video) {
+ mojo::BindToProxy(new MojoDemuxerStreamImpl(video), &video_stream)
+ ->DidConnect();
+ }
remote_audio_renderer_->Initialize(
audio_stream.Pass(),
« no previous file with comments | « media/mojo/services/mojo_demuxer_stream_impl.cc ('k') | mojo/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698