Index: media/filters/video_decoder_selector_unittest.cc |
diff --git a/media/filters/video_decoder_selector_unittest.cc b/media/filters/video_decoder_selector_unittest.cc |
index f2dabdf8d17101fb292342b6951067126cddbd1b..86f4c0eca1c6abb347cc1c56012507506baaeaf0 100644 |
--- a/media/filters/video_decoder_selector_unittest.cc |
+++ b/media/filters/video_decoder_selector_unittest.cc |
@@ -131,6 +131,8 @@ class VideoDecoderSelectorTest : public ::testing::Test { |
base::Bind(&VideoDecoderSelectorTest::MockOnDecoderSelected, |
base::Unretained(this)), |
base::Bind(&VideoDecoderSelectorTest::FrameReady, |
+ base::Unretained(this)), |
+ base::Bind(&VideoDecoderSelectorTest::OnWaitingForDecryptionKey, |
base::Unretained(this))); |
message_loop_.RunUntilIdle(); |
} |
@@ -147,6 +149,10 @@ class VideoDecoderSelectorTest : public ::testing::Test { |
NOTREACHED(); |
} |
+ void OnWaitingForDecryptionKey() { |
+ NOTREACHED(); |
+ } |
+ |
// Declare |decoder_selector_| after |demuxer_stream_| and |decryptor_| since |
// |demuxer_stream_| and |decryptor_| should outlive |decoder_selector_|. |
scoped_ptr<StrictMock<MockDemuxerStream> > demuxer_stream_; |