Index: talk/app/webrtc/peerconnection.h |
diff --git a/talk/app/webrtc/peerconnection.h b/talk/app/webrtc/peerconnection.h |
index bea9c2f61b610c83129c01f76af2f8f1080b57d2..2d356f0f196d4251138e8fea69aa0530e5986751 100644 |
--- a/talk/app/webrtc/peerconnection.h |
+++ b/talk/app/webrtc/peerconnection.h |
@@ -142,13 +142,16 @@ class PeerConnection : public PeerConnectionInterface, |
uint32 ssrc) override; |
void OnRemoveLocalVideoTrack(MediaStreamInterface* stream, |
VideoTrackInterface* video_track) override; |
- virtual void OnRemoveLocalStream(MediaStreamInterface* stream); |
+ void OnRemoveLocalStream(MediaStreamInterface* stream) override; |
// Implements IceObserver |
- virtual void OnIceConnectionChange(IceConnectionState new_state); |
- virtual void OnIceGatheringChange(IceGatheringState new_state); |
- virtual void OnIceCandidate(const IceCandidateInterface* candidate); |
- virtual void OnIceComplete(); |
+ // TODO(honghaiz): Change to OnIceConnectionStateChange so as to conform to |
+ // the w3c standard. |
+ void OnIceConnectionChange(IceConnectionState new_state) override; |
+ void OnIceGatheringChange(IceGatheringState new_state) override; |
+ void OnIceCandidate(const IceCandidateInterface* candidate) override; |
+ void OnIceComplete() override; |
+ void OnIceConnectionReceivingChange(bool receiving) override; |
// Signals from WebRtcSession. |
void OnSessionStateChange(cricket::BaseSession* session, |