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

Side by Side Diff: webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h

Issue 1703833002: Remove ignored return code from modules. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 4 years, 10 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
OLDNEW
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
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 int32_t()); 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 // 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_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/include/receive_statistics.h ('k') | webrtc/modules/rtp_rtcp/source/receive_statistics_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698