| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef MEDIA_CAST_VIDEO_SENDER_MOCK_VIDEO_ENCODER_CONTROLLER_H_ | |
| 6 #define MEDIA_CAST_VIDEO_SENDER_MOCK_VIDEO_ENCODER_CONTROLLER_H_ | |
| 7 | |
| 8 #include "media/cast/cast_config.h" | |
| 9 #include "testing/gmock/include/gmock/gmock.h" | |
| 10 | |
| 11 namespace media { | |
| 12 namespace cast { | |
| 13 | |
| 14 class MockVideoEncoderController : public VideoEncoderController { | |
| 15 public: | |
| 16 MockVideoEncoderController(); | |
| 17 virtual ~MockVideoEncoderController(); | |
| 18 | |
| 19 MOCK_METHOD1(SetBitRate, void(int new_bit_rate)); | |
| 20 | |
| 21 MOCK_METHOD1(SkipNextFrame, void(bool skip_next_frame)); | |
| 22 | |
| 23 MOCK_METHOD0(GenerateKeyFrame, void()); | |
| 24 | |
| 25 MOCK_METHOD1(LatestFrameIdToReference, void(uint32 frame_id)); | |
| 26 | |
| 27 MOCK_CONST_METHOD0(NumberOfSkippedFrames, int()); | |
| 28 }; | |
| 29 | |
| 30 } // namespace cast | |
| 31 } // namespace media | |
| 32 | |
| 33 #endif // MEDIA_CAST_VIDEO_SENDER_MOCK_VIDEO_ENCODER_CONTROLLER_H_ | |
| 34 | |
| OLD | NEW |