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}
This commit is contained in:
Henrik Boström 2015-09-08 14:10:08 +02:00
parent 04ada47273
commit a9839dd037
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}

View File

@ -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<rtc::Socket::Option, int> OptionPair;
typedef std::vector<OptionPair> OptionList;