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:
parent
68cbd01216
commit
0d92ef67c4
@ -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
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user