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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 MOCK_METHOD0(Process, | 251 MOCK_METHOD0(Process, |
252 void()); | 252 void()); |
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 MOCK_METHOD1(SetRtcEventLog, void(webrtc::RtcEventLog*)); |
261 // Members. | 262 // Members. |
262 unsigned int remote_ssrc_; | 263 unsigned int remote_ssrc_; |
263 }; | 264 }; |
264 | 265 |
265 } // namespace webrtc | 266 } // namespace webrtc |
266 | 267 |
267 #endif // WEBRTC_MODULES_RTP_RTCP_MOCKS_MOCK_RTP_RTCP_H_ | 268 #endif // WEBRTC_MODULES_RTP_RTCP_MOCKS_MOCK_RTP_RTCP_H_ |
OLD | NEW |