From 0d92ef67c49d67de3c1d764dc74d3a74ba61ab5a Mon Sep 17 00:00:00 2001 From: "mallinath@webrtc.org" Date: Wed, 22 Jan 2014 02:21:22 +0000 Subject: [PATCH] Libjingle source code has some spelling mistakes and one of them is "renegotation", which should be "renegotiation". This CL is attempting to correct those. BUG=2810 TBR=fischman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/7439004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5411 4adac7df-926f-26a2-2b94-8c16560cd09d --- talk/app/webrtc/objc/RTCPeerConnectionObserver.h | 2 +- talk/app/webrtc/objc/public/RTCPeerConnectionDelegate.h | 2 +- talk/app/webrtc/peerconnectioninterface.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/talk/app/webrtc/objc/RTCPeerConnectionObserver.h b/talk/app/webrtc/objc/RTCPeerConnectionObserver.h index c7d1ef8b8c..2bb35550fe 100644 --- a/talk/app/webrtc/objc/RTCPeerConnectionObserver.h +++ b/talk/app/webrtc/objc/RTCPeerConnectionObserver.h @@ -57,7 +57,7 @@ class RTCPeerConnectionObserver : public PeerConnectionObserver { // Triggered when a remote peer open a data channel. virtual void OnDataChannel(DataChannelInterface* data_channel) OVERRIDE; - // Triggered when renegotation is needed, for example the ICE has restarted. + // Triggered when renegotiation is needed, for example the ICE has restarted. virtual void OnRenegotiationNeeded() OVERRIDE; // Called any time the ICEConnectionState changes diff --git a/talk/app/webrtc/objc/public/RTCPeerConnectionDelegate.h b/talk/app/webrtc/objc/public/RTCPeerConnectionDelegate.h index b3bb881da6..9695be8e08 100644 --- a/talk/app/webrtc/objc/public/RTCPeerConnectionDelegate.h +++ b/talk/app/webrtc/objc/public/RTCPeerConnectionDelegate.h @@ -52,7 +52,7 @@ - (void)peerConnection:(RTCPeerConnection *)peerConnection removedStream:(RTCMediaStream *)stream; -// Triggered when renegotation is needed, for example the ICE has restarted. +// Triggered when renegotiation is needed, for example the ICE has restarted. - (void)peerConnectionOnRenegotiationNeeded:(RTCPeerConnection *)peerConnection; // Called any time the ICEConnectionState changes. diff --git a/talk/app/webrtc/peerconnectioninterface.h b/talk/app/webrtc/peerconnectioninterface.h index 4a54d3ce3d..d24c9a9ecc 100644 --- a/talk/app/webrtc/peerconnectioninterface.h +++ b/talk/app/webrtc/peerconnectioninterface.h @@ -276,7 +276,7 @@ class PeerConnectionObserver { // TODO(perkj): Make pure virtual. virtual void OnDataChannel(DataChannelInterface* data_channel) {} - // Triggered when renegotation is needed, for example the ICE has restarted. + // Triggered when renegotiation is needed, for example the ICE has restarted. virtual void OnRenegotiationNeeded() = 0; // Called any time the IceConnectionState changes