From a9839dd03743d6abda830ba0d783fa6eacc013be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Bostr=C3=B6m?= Date: Tue, 8 Sep 2015 14:10:08 +0200 Subject: [PATCH] Use of override keyword to fix chromium trybot TBR=tommi@webrtc.org, guidou@chromium.org Review URL: https://codereview.webrtc.org/1302403007 . Cr-Commit-Position: refs/heads/master@{#9890} --- webrtc/p2p/base/dtlstransportchannel.h | 2 +- webrtc/p2p/base/transportchannelproxy.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/webrtc/p2p/base/dtlstransportchannel.h b/webrtc/p2p/base/dtlstransportchannel.h index 68bf4c00d2..2090759aad 100644 --- a/webrtc/p2p/base/dtlstransportchannel.h +++ b/webrtc/p2p/base/dtlstransportchannel.h @@ -199,7 +199,7 @@ class DtlsTransportChannelWrapper : public TransportChannelImpl { channel_->OnCandidate(candidate); } - void SetReceivingTimeout(int receiving_timeout_ms) { + void SetReceivingTimeout(int receiving_timeout_ms) override { channel_->SetReceivingTimeout(receiving_timeout_ms); } diff --git a/webrtc/p2p/base/transportchannelproxy.h b/webrtc/p2p/base/transportchannelproxy.h index 3d55d10694..e39398abe8 100644 --- a/webrtc/p2p/base/transportchannelproxy.h +++ b/webrtc/p2p/base/transportchannelproxy.h @@ -79,7 +79,7 @@ class TransportChannelProxy : public TransportChannel, void OnReadyToSend(TransportChannel* channel); void OnRouteChange(TransportChannel* channel, const Candidate& candidate); - void OnMessage(rtc::Message* message); + void OnMessage(rtc::Message* message) override; typedef std::pair OptionPair; typedef std::vector OptionList;