| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 MOCK_METHOD1(SetRtcpXrRrtrStatus, | 178 MOCK_METHOD1(SetRtcpXrRrtrStatus, |
| 179 void(bool enable)); | 179 void(bool enable)); |
| 180 MOCK_CONST_METHOD0(RtcpXrRrtrStatus, | 180 MOCK_CONST_METHOD0(RtcpXrRrtrStatus, |
| 181 bool()); | 181 bool()); |
| 182 MOCK_CONST_METHOD0(REMB, | 182 MOCK_CONST_METHOD0(REMB, |
| 183 bool()); | 183 bool()); |
| 184 MOCK_METHOD1(SetREMBStatus, void(const bool enable)); | 184 MOCK_METHOD1(SetREMBStatus, void(const bool enable)); |
| 185 MOCK_METHOD2(SetREMBData, | 185 MOCK_METHOD2(SetREMBData, |
| 186 void(const uint32_t bitrate, | 186 void(const uint32_t bitrate, |
| 187 const std::vector<uint32_t>& ssrcs)); | 187 const std::vector<uint32_t>& ssrcs)); |
| 188 MOCK_CONST_METHOD0(IJ, | |
| 189 bool()); | |
| 190 MOCK_METHOD1(SetIJStatus, void(const bool)); | |
| 191 MOCK_CONST_METHOD0(TMMBR, | 188 MOCK_CONST_METHOD0(TMMBR, |
| 192 bool()); | 189 bool()); |
| 193 MOCK_METHOD1(SetTMMBRStatus, void(const bool enable)); | 190 MOCK_METHOD1(SetTMMBRStatus, void(const bool enable)); |
| 194 MOCK_METHOD1(OnBandwidthEstimateUpdate, | 191 MOCK_METHOD1(OnBandwidthEstimateUpdate, |
| 195 void(uint16_t bandWidthKbit)); | 192 void(uint16_t bandWidthKbit)); |
| 196 MOCK_CONST_METHOD0(NACK, | 193 MOCK_CONST_METHOD0(NACK, |
| 197 NACKMethod()); | 194 NACKMethod()); |
| 198 MOCK_METHOD2(SetNACKStatus, | 195 MOCK_METHOD2(SetNACKStatus, |
| 199 int32_t(const NACKMethod method, int oldestSequenceNumberToNack)); | 196 int32_t(const NACKMethod method, int oldestSequenceNumberToNack)); |
| 200 MOCK_CONST_METHOD0(SelectiveRetransmissions, | 197 MOCK_CONST_METHOD0(SelectiveRetransmissions, |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 void(StreamDataCountersCallback*)); | 250 void(StreamDataCountersCallback*)); |
| 254 MOCK_CONST_METHOD0(GetSendChannelRtpStatisticsCallback, | 251 MOCK_CONST_METHOD0(GetSendChannelRtpStatisticsCallback, |
| 255 StreamDataCountersCallback*(void)); | 252 StreamDataCountersCallback*(void)); |
| 256 // Members. | 253 // Members. |
| 257 unsigned int remote_ssrc_; | 254 unsigned int remote_ssrc_; |
| 258 }; | 255 }; |
| 259 | 256 |
| 260 } // namespace webrtc | 257 } // namespace webrtc |
| 261 | 258 |
| 262 #endif // WEBRTC_MODULES_RTP_RTCP_MOCKS_MOCK_RTP_RTCP_H_ | 259 #endif // WEBRTC_MODULES_RTP_RTCP_MOCKS_MOCK_RTP_RTCP_H_ |
| OLD | NEW |