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
This commit is contained in:
mallinath@webrtc.org 2014-01-22 02:21:22 +00:00
parent 68cbd01216
commit 0d92ef67c4
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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.

View File

@ -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