| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 void(uint32_t)); | 106 void(uint32_t)); |
| 107 MOCK_METHOD2(SetRtxSendPayloadType, void(int, int)); | 107 MOCK_METHOD2(SetRtxSendPayloadType, void(int, int)); |
| 108 MOCK_CONST_METHOD0(RtxSendPayloadType, std::pair<int, int>()); | 108 MOCK_CONST_METHOD0(RtxSendPayloadType, std::pair<int, int>()); |
| 109 MOCK_METHOD1(SetSendingStatus, | 109 MOCK_METHOD1(SetSendingStatus, |
| 110 int32_t(const bool sending)); | 110 int32_t(const bool sending)); |
| 111 MOCK_CONST_METHOD0(Sending, | 111 MOCK_CONST_METHOD0(Sending, |
| 112 bool()); | 112 bool()); |
| 113 MOCK_METHOD1(SetSendingMediaStatus, void(const bool sending)); | 113 MOCK_METHOD1(SetSendingMediaStatus, void(const bool sending)); |
| 114 MOCK_CONST_METHOD0(SendingMedia, | 114 MOCK_CONST_METHOD0(SendingMedia, |
| 115 bool()); | 115 bool()); |
| 116 MOCK_CONST_METHOD4(BitrateSent, | 116 MOCK_METHOD4(BitrateSent, |
| 117 void(uint32_t* totalRate, | 117 void(uint32_t* totalRate, |
| 118 uint32_t* videoRate, | 118 uint32_t* videoRate, |
| 119 uint32_t* fecRate, | 119 uint32_t* fecRate, |
| 120 uint32_t* nackRate)); | 120 uint32_t* nackRate)); |
| 121 MOCK_METHOD1(RegisterVideoBitrateObserver, void(BitrateStatisticsObserver*)); | 121 MOCK_METHOD1(RegisterVideoBitrateObserver, void(BitrateStatisticsObserver*)); |
| 122 MOCK_CONST_METHOD0(GetVideoBitrateObserver, BitrateStatisticsObserver*(void)); | 122 MOCK_CONST_METHOD0(GetVideoBitrateObserver, BitrateStatisticsObserver*(void)); |
| 123 MOCK_CONST_METHOD1(EstimatedReceiveBandwidth, | 123 MOCK_CONST_METHOD1(EstimatedReceiveBandwidth, |
| 124 int(uint32_t* available_bandwidth)); | 124 int(uint32_t* available_bandwidth)); |
| 125 MOCK_METHOD8(SendOutgoingData, | 125 MOCK_METHOD8(SendOutgoingData, |
| 126 int32_t(const FrameType frameType, | 126 int32_t(const FrameType frameType, |
| 127 const int8_t payloadType, | 127 const int8_t payloadType, |
| 128 const uint32_t timeStamp, | 128 const uint32_t timeStamp, |
| 129 int64_t capture_time_ms, | 129 int64_t capture_time_ms, |
| 130 const uint8_t* payloadData, | 130 const uint8_t* payloadData, |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 void(StreamDataCountersCallback*)); | 256 void(StreamDataCountersCallback*)); |
| 257 MOCK_CONST_METHOD0(GetSendChannelRtpStatisticsCallback, | 257 MOCK_CONST_METHOD0(GetSendChannelRtpStatisticsCallback, |
| 258 StreamDataCountersCallback*(void)); | 258 StreamDataCountersCallback*(void)); |
| 259 // Members. | 259 // Members. |
| 260 unsigned int remote_ssrc_; | 260 unsigned int remote_ssrc_; |
| 261 }; | 261 }; |
| 262 | 262 |
| 263 } // namespace webrtc | 263 } // namespace webrtc |
| 264 | 264 |
| 265 #endif // WEBRTC_MODULES_RTP_RTCP_MOCKS_MOCK_RTP_RTCP_H_ | 265 #endif // WEBRTC_MODULES_RTP_RTCP_MOCKS_MOCK_RTP_RTCP_H_ |
| OLD | NEW |