| Index: webrtc/p2p/base/transportchannelimpl.h
|
| diff --git a/webrtc/p2p/base/transportchannelimpl.h b/webrtc/p2p/base/transportchannelimpl.h
|
| index 705550b52a846c263a30f93ab55148eb49424c26..a6a90f32dca62bacc64592c4fdd065330626b76c 100644
|
| --- a/webrtc/p2p/base/transportchannelimpl.h
|
| +++ b/webrtc/p2p/base/transportchannelimpl.h
|
| @@ -57,11 +57,7 @@ class TransportChannelImpl : public TransportChannel {
|
| // Begins the process of attempting to make a connection to the other client.
|
| virtual void Connect() = 0;
|
|
|
| - // Allows an individual channel to request signaling and be notified when it
|
| - // is ready. This is useful if the individual named channels have need to
|
| - // send their own transport-info stanzas.
|
| - sigslot::signal1<TransportChannelImpl*> SignalRequestSignaling;
|
| - virtual void OnSignalingReady() = 0;
|
| + sigslot::signal1<TransportChannelImpl*> SignalCandidatesAllocationStarted;
|
|
|
| // Handles sending and receiving of candidates. The Transport
|
| // receives the candidates and may forward them to the relevant
|
| @@ -75,6 +71,9 @@ class TransportChannelImpl : public TransportChannel {
|
| const Candidate&> SignalCandidateReady;
|
| virtual void OnCandidate(const Candidate& candidate) = 0;
|
|
|
| + virtual Transport::CandidateGatheringState candidate_gathering_state()
|
| + const = 0;
|
| +
|
| // DTLS methods
|
| // Set DTLS local identity. The identity object is not copied, but the caller
|
| // retains ownership and must delete it after this TransportChannelImpl is
|
|
|