| 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 MOCK_METHOD2(SetFecParameters, | 242 MOCK_METHOD2(SetFecParameters, |
| 243 int32_t(const FecProtectionParams* delta_params, | 243 int32_t(const FecProtectionParams* delta_params, |
| 244 const FecProtectionParams* key_params)); | 244 const FecProtectionParams* key_params)); |
| 245 MOCK_METHOD1(SetKeyFrameRequestMethod, | 245 MOCK_METHOD1(SetKeyFrameRequestMethod, |
| 246 int32_t(const KeyFrameRequestMethod method)); | 246 int32_t(const KeyFrameRequestMethod method)); |
| 247 MOCK_METHOD0(RequestKeyFrame, | 247 MOCK_METHOD0(RequestKeyFrame, |
| 248 int32_t()); | 248 int32_t()); |
| 249 MOCK_METHOD0(TimeUntilNextProcess, | 249 MOCK_METHOD0(TimeUntilNextProcess, |
| 250 int64_t()); | 250 int64_t()); |
| 251 MOCK_METHOD0(Process, | 251 MOCK_METHOD0(Process, |
| 252 void()); | 252 int32_t()); |
| 253 MOCK_METHOD1(RegisterSendFrameCountObserver, | 253 MOCK_METHOD1(RegisterSendFrameCountObserver, |
| 254 void(FrameCountObserver*)); | 254 void(FrameCountObserver*)); |
| 255 MOCK_CONST_METHOD0(GetSendFrameCountObserver, | 255 MOCK_CONST_METHOD0(GetSendFrameCountObserver, |
| 256 FrameCountObserver*(void)); | 256 FrameCountObserver*(void)); |
| 257 MOCK_METHOD1(RegisterSendChannelRtpStatisticsCallback, | 257 MOCK_METHOD1(RegisterSendChannelRtpStatisticsCallback, |
| 258 void(StreamDataCountersCallback*)); | 258 void(StreamDataCountersCallback*)); |
| 259 MOCK_CONST_METHOD0(GetSendChannelRtpStatisticsCallback, | 259 MOCK_CONST_METHOD0(GetSendChannelRtpStatisticsCallback, |
| 260 StreamDataCountersCallback*(void)); | 260 StreamDataCountersCallback*(void)); |
| 261 // Members. | 261 // Members. |
| 262 unsigned int remote_ssrc_; | 262 unsigned int remote_ssrc_; |
| 263 }; | 263 }; |
| 264 | 264 |
| 265 } // namespace webrtc | 265 } // namespace webrtc |
| 266 | 266 |
| 267 #endif // WEBRTC_MODULES_RTP_RTCP_MOCKS_MOCK_RTP_RTCP_H_ | 267 #endif // WEBRTC_MODULES_RTP_RTCP_MOCKS_MOCK_RTP_RTCP_H_ |
| OLD | NEW |