Index: webrtc/p2p/base/transportcontroller.cc |
diff --git a/webrtc/p2p/base/transportcontroller.cc b/webrtc/p2p/base/transportcontroller.cc |
index 968de0bf2c1db76bcab5f413165cb4d63546208a..4a3a00e10f0e2831e4eefcf6bd53d229086b0d84 100644 |
--- a/webrtc/p2p/base/transportcontroller.cc |
+++ b/webrtc/p2p/base/transportcontroller.cc |
@@ -47,7 +47,7 @@ |
// TODO(deadbeef): Change the types of |dtls| and |ice| to |
// DtlsTransportChannelWrapper and P2PTransportChannelWrapper, |
// once TransportChannelImpl is removed. |
- ChannelPair(TransportChannelImpl* dtls, IceTransportInternal* ice) |
+ ChannelPair(TransportChannelImpl* dtls, TransportChannelImpl* ice) |
: ice_(ice), dtls_(dtls) {} |
// Currently, all ICE-related calls still go through this DTLS channel. But |
@@ -55,11 +55,11 @@ |
// channel interface no longer includes ICE-specific methods. |
const TransportChannelImpl* dtls() const { return dtls_.get(); } |
TransportChannelImpl* dtls() { return dtls_.get(); } |
- const IceTransportInternal* ice() const { return ice_.get(); } |
- IceTransportInternal* ice() { return ice_.get(); } |
+ const TransportChannelImpl* ice() const { return ice_.get(); } |
+ TransportChannelImpl* ice() { return ice_.get(); } |
private: |
- std::unique_ptr<IceTransportInternal> ice_; |
+ std::unique_ptr<TransportChannelImpl> ice_; |
std::unique_ptr<TransportChannelImpl> dtls_; |
RTC_DISALLOW_COPY_AND_ASSIGN(ChannelPair); |
@@ -243,7 +243,7 @@ |
JsepTransport* transport = GetOrCreateJsepTransport(transport_name); |
// Create DTLS channel wrapping ICE channel, and configure it. |
- IceTransportInternal* ice = |
+ TransportChannelImpl* ice = |
CreateIceTransportChannel_n(transport_name, component); |
// TODO(deadbeef): To support QUIC, would need to create a |
// QuicTransportChannel here. What is "dtls" in this file would then become |
@@ -341,7 +341,7 @@ |
return ch ? ch->dtls() : nullptr; |
} |
-IceTransportInternal* TransportController::CreateIceTransportChannel_n( |
+TransportChannelImpl* TransportController::CreateIceTransportChannel_n( |
const std::string& transport_name, |
int component) { |
return new P2PTransportChannel(transport_name, component, port_allocator_); |
@@ -350,7 +350,7 @@ |
TransportChannelImpl* TransportController::CreateDtlsTransportChannel_n( |
const std::string&, |
int, |
- IceTransportInternal* ice) { |
+ TransportChannelImpl* ice) { |
DtlsTransportChannelWrapper* dtls = new DtlsTransportChannelWrapper(ice); |
dtls->SetSslMaxProtocolVersion(ssl_max_version_); |
return dtls; |
@@ -822,12 +822,13 @@ |
bool all_done_gathering = !channels_.empty(); |
for (const auto& channel : channels_) { |
any_receiving = any_receiving || channel->dtls()->receiving(); |
- any_failed = any_failed || |
- channel->dtls()->GetState() == IceTransportState::STATE_FAILED; |
+ any_failed = |
+ any_failed || |
+ channel->dtls()->GetState() == TransportChannelState::STATE_FAILED; |
all_connected = all_connected && channel->dtls()->writable(); |
all_completed = |
all_completed && channel->dtls()->writable() && |
- channel->dtls()->GetState() == IceTransportState::STATE_COMPLETED && |
+ channel->dtls()->GetState() == TransportChannelState::STATE_COMPLETED && |
channel->dtls()->GetIceRole() == ICEROLE_CONTROLLING && |
channel->dtls()->gathering_state() == kIceGatheringComplete; |
any_gathering = |