Chromium Code Reviews| Index: webrtc/modules/video_coding/include/mock/mock_video_codec_interface.h |
| diff --git a/webrtc/modules/video_coding/include/mock/mock_video_codec_interface.h b/webrtc/modules/video_coding/include/mock/mock_video_codec_interface.h |
| index 7e2076ccdc1cff805dcf087cfbdb805c6a8079f8..d1d7bffada79c6c063cda46134d7cc398d33bc85 100644 |
| --- a/webrtc/modules/video_coding/include/mock/mock_video_codec_interface.h |
| +++ b/webrtc/modules/video_coding/include/mock/mock_video_codec_interface.h |
| @@ -57,6 +57,10 @@ class MockDecodedImageCallback : public DecodedImageCallback { |
| MOCK_METHOD2(Decoded, |
| int32_t(VideoFrame& decodedImage, // NOLINT |
| int64_t decode_time_ms)); |
| + MOCK_METHOD3(Decoded, |
| + int32_t(VideoFrame& decodedImage, // NOLINT |
| + rtc::Optional<int32_t> decode_time_ms, |
| + rtc::Optional<uint8_t> qp)); |
|
hbos
2017/01/26 15:04:45
Is NOLINT necessary?
sakal
2017/01/26 15:46:52
Yes:
Is this a non-const reference? If so, make co
|
| MOCK_METHOD1(ReceivedDecodedReferenceFrame, |
| int32_t(const uint64_t pictureId)); |
| MOCK_METHOD1(ReceivedDecodedFrame, int32_t(const uint64_t pictureId)); |