OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_MODULES_CONGESTION_CONTROLLER_INCLUDE_MOCK_MOCK_CONGESTION_CONTRO
LLER_H_ | 11 #ifndef WEBRTC_MODULES_CONGESTION_CONTROLLER_INCLUDE_MOCK_MOCK_CONGESTION_CONTRO
LLER_H_ |
12 #define WEBRTC_MODULES_CONGESTION_CONTROLLER_INCLUDE_MOCK_MOCK_CONGESTION_CONTRO
LLER_H_ | 12 #define WEBRTC_MODULES_CONGESTION_CONTROLLER_INCLUDE_MOCK_MOCK_CONGESTION_CONTRO
LLER_H_ |
13 | 13 |
14 #include "webrtc/base/constructormagic.h" | 14 #include "webrtc/base/constructormagic.h" |
15 #include "webrtc/base/socket.h" | 15 #include "webrtc/base/socket.h" |
16 #include "webrtc/common_types.h" | |
17 #include "webrtc/modules/congestion_controller/include/congestion_controller.h" | 16 #include "webrtc/modules/congestion_controller/include/congestion_controller.h" |
18 #include "webrtc/test/gmock.h" | 17 #include "webrtc/test/gmock.h" |
19 | 18 |
20 namespace webrtc { | 19 namespace webrtc { |
21 namespace test { | 20 namespace test { |
22 | 21 |
23 class MockCongestionObserver : public CongestionController::Observer { | 22 class MockCongestionObserver : public CongestionController::Observer { |
24 public: | 23 public: |
25 // TODO(minyue): remove this when old OnNetworkChanged is deprecated. See | 24 // TODO(minyue): remove this when old OnNetworkChanged is deprecated. See |
26 // https://bugs.chromium.org/p/webrtc/issues/detail?id=6796 | 25 // https://bugs.chromium.org/p/webrtc/issues/detail?id=6796 |
(...skipping 11 matching lines...) Expand all Loading... |
38 MockCongestionController(Clock* clock, | 37 MockCongestionController(Clock* clock, |
39 Observer* observer, | 38 Observer* observer, |
40 RemoteBitrateObserver* remote_bitrate_observer, | 39 RemoteBitrateObserver* remote_bitrate_observer, |
41 RtcEventLog* event_log, | 40 RtcEventLog* event_log, |
42 PacketRouter* packet_router) | 41 PacketRouter* packet_router) |
43 : CongestionController(clock, | 42 : CongestionController(clock, |
44 observer, | 43 observer, |
45 remote_bitrate_observer, | 44 remote_bitrate_observer, |
46 event_log, | 45 event_log, |
47 packet_router) {} | 46 packet_router) {} |
48 MOCK_METHOD3(OnReceivedPacket, | |
49 void(int64_t arrival_time_ms, | |
50 size_t payload_size, | |
51 const RTPHeader& header)); | |
52 MOCK_METHOD3(SetBweBitrates, | 47 MOCK_METHOD3(SetBweBitrates, |
53 void(int min_bitrate_bps, | 48 void(int min_bitrate_bps, |
54 int start_bitrate_bps, | 49 int start_bitrate_bps, |
55 int max_bitrate_bps)); | 50 int max_bitrate_bps)); |
56 MOCK_METHOD1(SignalNetworkState, void(NetworkState state)); | 51 MOCK_METHOD1(SignalNetworkState, void(NetworkState state)); |
57 MOCK_CONST_METHOD0(GetBitrateController, BitrateController*()); | 52 MOCK_CONST_METHOD0(GetBitrateController, BitrateController*()); |
58 MOCK_METHOD1(GetRemoteBitrateEstimator, | 53 MOCK_METHOD1(GetRemoteBitrateEstimator, |
59 RemoteBitrateEstimator*(bool send_side_bwe)); | 54 RemoteBitrateEstimator*(bool send_side_bwe)); |
60 MOCK_CONST_METHOD0(GetPacerQueuingDelayMs, int64_t()); | 55 MOCK_CONST_METHOD0(GetPacerQueuingDelayMs, int64_t()); |
61 MOCK_METHOD0(pacer, PacedSender*()); | 56 MOCK_METHOD0(pacer, PacedSender*()); |
62 MOCK_METHOD0(GetTransportFeedbackObserver, TransportFeedbackObserver*()); | 57 MOCK_METHOD0(GetTransportFeedbackObserver, TransportFeedbackObserver*()); |
63 MOCK_METHOD3(UpdatePacerBitrate, | 58 MOCK_METHOD3(UpdatePacerBitrate, |
64 void(int bitrate_kbps, | 59 void(int bitrate_kbps, |
65 int max_bitrate_kbps, | 60 int max_bitrate_kbps, |
66 int min_bitrate_kbps)); | 61 int min_bitrate_kbps)); |
67 MOCK_METHOD1(OnSentPacket, void(const rtc::SentPacket& sent_packet)); | 62 MOCK_METHOD1(OnSentPacket, void(const rtc::SentPacket& sent_packet)); |
68 | 63 |
69 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(MockCongestionController); | 64 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(MockCongestionController); |
70 }; | 65 }; |
71 } // namespace test | 66 } // namespace test |
72 } // namespace webrtc | 67 } // namespace webrtc |
73 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_INCLUDE_MOCK_MOCK_CONGESTION_CON
TROLLER_H_ | 68 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_INCLUDE_MOCK_MOCK_CONGESTION_CON
TROLLER_H_ |
OLD | NEW |