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

Side by Side Diff: webrtc/api/webrtcsession.h

Issue 1921653002: Enable -Winconsistent-missing-override flag. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. Created 4 years, 7 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
« no previous file with comments | « webrtc/api/videotracksource.h ('k') | webrtc/api/webrtcsession_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 rtc::VideoSinkInterface<cricket::VideoFrame>* sink) override; 260 rtc::VideoSinkInterface<cricket::VideoFrame>* sink) override;
261 void SetVideoSend(uint32_t ssrc, 261 void SetVideoSend(uint32_t ssrc,
262 bool enable, 262 bool enable,
263 const cricket::VideoOptions* options) override; 263 const cricket::VideoOptions* options) override;
264 264
265 RtpParameters GetVideoRtpParameters(uint32_t ssrc) const override; 265 RtpParameters GetVideoRtpParameters(uint32_t ssrc) const override;
266 bool SetVideoRtpParameters(uint32_t ssrc, 266 bool SetVideoRtpParameters(uint32_t ssrc,
267 const RtpParameters& parameters) override; 267 const RtpParameters& parameters) override;
268 268
269 // Implements DtmfProviderInterface. 269 // Implements DtmfProviderInterface.
270 virtual bool CanInsertDtmf(const std::string& track_id); 270 bool CanInsertDtmf(const std::string& track_id) override;
271 virtual bool InsertDtmf(const std::string& track_id, 271 bool InsertDtmf(const std::string& track_id,
272 int code, int duration); 272 int code, int duration) override;
273 virtual sigslot::signal0<>* GetOnDestroyedSignal(); 273 sigslot::signal0<>* GetOnDestroyedSignal() override;
274 274
275 // Implements DataChannelProviderInterface. 275 // Implements DataChannelProviderInterface.
276 bool SendData(const cricket::SendDataParams& params, 276 bool SendData(const cricket::SendDataParams& params,
277 const rtc::CopyOnWriteBuffer& payload, 277 const rtc::CopyOnWriteBuffer& payload,
278 cricket::SendDataResult* result) override; 278 cricket::SendDataResult* result) override;
279 bool ConnectDataChannel(DataChannel* webrtc_data_channel) override; 279 bool ConnectDataChannel(DataChannel* webrtc_data_channel) override;
280 void DisconnectDataChannel(DataChannel* webrtc_data_channel) override; 280 void DisconnectDataChannel(DataChannel* webrtc_data_channel) override;
281 void AddSctpDataStream(int sid) override; 281 void AddSctpDataStream(int sid) override;
282 void RemoveSctpDataStream(int sid) override; 282 void RemoveSctpDataStream(int sid) override;
283 bool ReadyToSendData() const override; 283 bool ReadyToSendData() const override;
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 PeerConnectionInterface::BundlePolicy bundle_policy_; 515 PeerConnectionInterface::BundlePolicy bundle_policy_;
516 516
517 // Declares the RTCP mux policy for the WebRTCSession. 517 // Declares the RTCP mux policy for the WebRTCSession.
518 PeerConnectionInterface::RtcpMuxPolicy rtcp_mux_policy_; 518 PeerConnectionInterface::RtcpMuxPolicy rtcp_mux_policy_;
519 519
520 RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSession); 520 RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSession);
521 }; 521 };
522 } // namespace webrtc 522 } // namespace webrtc
523 523
524 #endif // WEBRTC_API_WEBRTCSESSION_H_ 524 #endif // WEBRTC_API_WEBRTCSESSION_H_
OLDNEW
« no previous file with comments | « webrtc/api/videotracksource.h ('k') | webrtc/api/webrtcsession_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698