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

Unified 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, 8 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/api/webrtcsession.h
diff --git a/webrtc/api/webrtcsession.h b/webrtc/api/webrtcsession.h
index 08938fc9f61635a6c23382d1271ef2f41146aa65..8202cb12096b23aaac7011cb3315741daa4281a4 100644
--- a/webrtc/api/webrtcsession.h
+++ b/webrtc/api/webrtcsession.h
@@ -267,10 +267,10 @@ class WebRtcSession : public AudioProviderInterface,
const RtpParameters& parameters) override;
// Implements DtmfProviderInterface.
- virtual bool CanInsertDtmf(const std::string& track_id);
- virtual bool InsertDtmf(const std::string& track_id,
- int code, int duration);
- virtual sigslot::signal0<>* GetOnDestroyedSignal();
+ bool CanInsertDtmf(const std::string& track_id) override;
+ bool InsertDtmf(const std::string& track_id,
+ int code, int duration) override;
+ sigslot::signal0<>* GetOnDestroyedSignal() override;
// Implements DataChannelProviderInterface.
bool SendData(const cricket::SendDataParams& params,

Powered by Google App Engine
This is Rietveld 408576698