Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(379)

Side by Side Diff: webrtc/modules/congestion_controller/include/mock/mock_congestion_controller.h

Issue 2762023004: Delete class MockCongestionController. (Closed)
Patch Set: Also delete obsolete TODO and using declaration. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_
stefan-webrtc 2017/03/21 15:28:57 Maybe rename the file to mock_congestion_observer.
nisse-webrtc 2017/03/21 15:31:45 Hmm. It's used in only one place, webrtc/audio/aud
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" 16 #include "webrtc/common_types.h"
17 #include "webrtc/modules/congestion_controller/include/congestion_controller.h" 17 #include "webrtc/modules/congestion_controller/include/congestion_controller.h"
18 #include "webrtc/test/gmock.h" 18 #include "webrtc/test/gmock.h"
19 19
20 namespace webrtc { 20 namespace webrtc {
21 namespace test { 21 namespace test {
22 22
23 class MockCongestionObserver : public CongestionController::Observer { 23 class MockCongestionObserver : public CongestionController::Observer {
24 public: 24 public:
25 // TODO(minyue): remove this when old OnNetworkChanged is deprecated. See
26 // https://bugs.chromium.org/p/webrtc/issues/detail?id=6796
27 using CongestionController::Observer::OnNetworkChanged;
28
29 MOCK_METHOD4(OnNetworkChanged, 25 MOCK_METHOD4(OnNetworkChanged,
30 void(uint32_t bitrate_bps, 26 void(uint32_t bitrate_bps,
31 uint8_t fraction_loss, 27 uint8_t fraction_loss,
32 int64_t rtt_ms, 28 int64_t rtt_ms,
33 int64_t probing_interval_ms)); 29 int64_t probing_interval_ms));
34 }; 30 };
35 31
36 class MockCongestionController : public CongestionController {
37 public:
38 MockCongestionController(Clock* clock,
39 Observer* observer,
40 RemoteBitrateObserver* remote_bitrate_observer,
41 RtcEventLog* event_log,
42 PacketRouter* packet_router)
43 : CongestionController(clock,
44 observer,
45 remote_bitrate_observer,
46 event_log,
47 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,
53 void(int min_bitrate_bps,
54 int start_bitrate_bps,
55 int max_bitrate_bps));
56 MOCK_METHOD1(SignalNetworkState, void(NetworkState state));
57 MOCK_CONST_METHOD0(GetBitrateController, BitrateController*());
58 MOCK_METHOD1(GetRemoteBitrateEstimator,
59 RemoteBitrateEstimator*(bool send_side_bwe));
60 MOCK_CONST_METHOD0(GetPacerQueuingDelayMs, int64_t());
61 MOCK_METHOD0(pacer, PacedSender*());
62 MOCK_METHOD0(GetTransportFeedbackObserver, TransportFeedbackObserver*());
63 MOCK_METHOD3(UpdatePacerBitrate,
64 void(int bitrate_kbps,
65 int max_bitrate_kbps,
66 int min_bitrate_kbps));
67 MOCK_METHOD1(OnSentPacket, void(const rtc::SentPacket& sent_packet));
68
69 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(MockCongestionController);
70 };
71 } // namespace test 32 } // namespace test
72 } // namespace webrtc 33 } // namespace webrtc
73 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_INCLUDE_MOCK_MOCK_CONGESTION_CON TROLLER_H_ 34 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_INCLUDE_MOCK_MOCK_CONGESTION_CON TROLLER_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698