| Index: content/renderer/media/rtc_video_decoder.cc
|
| ===================================================================
|
| --- content/renderer/media/rtc_video_decoder.cc (revision 113906)
|
| +++ content/renderer/media/rtc_video_decoder.cc (working copy)
|
| @@ -38,7 +38,7 @@
|
| RTCVideoDecoder::~RTCVideoDecoder() {}
|
|
|
| void RTCVideoDecoder::Initialize(DemuxerStream* demuxer_stream,
|
| - const media::PipelineStatusCB& filter_callback,
|
| + const base::Closure& filter_callback,
|
| const StatisticsCallback& stat_callback) {
|
| if (MessageLoop::current() != message_loop_) {
|
| message_loop_->PostTask(
|
| @@ -51,7 +51,7 @@
|
|
|
| DCHECK_EQ(MessageLoop::current(), message_loop_);
|
| state_ = kNormal;
|
| - filter_callback.Run(PIPELINE_OK);
|
| + filter_callback.Run();
|
|
|
| // TODO(acolwell): Implement stats.
|
| }
|
|
|
| Property changes on: content/renderer/media/rtc_video_decoder.cc
|
| ___________________________________________________________________
|
| Added: svn:mergeinfo
|
|
|
|
|