| Index: content/renderer/media/rtc_video_decoder_unittest.cc
|
| diff --git a/content/renderer/media/rtc_video_decoder_unittest.cc b/content/renderer/media/rtc_video_decoder_unittest.cc
|
| index 903cfc308505230593792acb43601e783a2d3b51..15c4a0fe41fa6a79579c89ecc18efa28dffac6c8 100644
|
| --- a/content/renderer/media/rtc_video_decoder_unittest.cc
|
| +++ b/content/renderer/media/rtc_video_decoder_unittest.cc
|
| @@ -35,6 +35,7 @@ using media::MockStatisticsCallback;
|
| using media::MockVideoRenderer;
|
| using media::MockFilterHost;
|
| using media::NewExpectedClosure;
|
| +using media::NewExpectedStatusCB;
|
| using media::PipelineStatistics;
|
| using media::PIPELINE_OK;
|
| using media::StatisticsCallback;
|
| @@ -133,8 +134,8 @@ class RTCVideoDecoderTest : public testing::Test {
|
|
|
| void InitializeDecoderSuccessfully() {
|
| // Test successful initialization.
|
| - decoder_->Initialize(NULL,
|
| - NewExpectedClosure(), NewStatisticsCallback());
|
| + decoder_->Initialize(
|
| + NULL, NewExpectedStatusCB(PIPELINE_OK), NewStatisticsCallback());
|
| message_loop_.RunAllPending();
|
| }
|
|
|
|
|