Index: webrtc/p2p/base/transportcontroller.cc |
diff --git a/webrtc/p2p/base/transportcontroller.cc b/webrtc/p2p/base/transportcontroller.cc |
index a961541dc3e9e4dd1ac2b1655d126f1b1eee7566..200d942d3fc08a3d09e75858a048b101456a3086 100644 |
--- a/webrtc/p2p/base/transportcontroller.cc |
+++ b/webrtc/p2p/base/transportcontroller.cc |
@@ -177,8 +177,8 @@ TransportChannel* TransportController::CreateTransportChannel_n( |
this, &TransportController::OnChannelCandidatesRemoved_n); |
channel->SignalRoleConflict.connect( |
this, &TransportController::OnChannelRoleConflict_n); |
- channel->SignalConnectionRemoved.connect( |
- this, &TransportController::OnChannelConnectionRemoved_n); |
+ channel->SignalChannelStateChanged.connect( |
+ this, &TransportController::OnChannelStateChanged_n); |
channels_.insert(channels_.end(), RefCountedChannel(channel))->AddRef(); |
// Adding a channel could cause aggregate state to change. |
UpdateAggregateStates_n(); |
@@ -592,7 +592,7 @@ void TransportController::OnChannelRoleConflict_n( |
} |
} |
-void TransportController::OnChannelConnectionRemoved_n( |
+void TransportController::OnChannelStateChanged_n( |
TransportChannelImpl* channel) { |
RTC_DCHECK(network_thread_->IsCurrent()); |
LOG(LS_INFO) << channel->transport_name() << " TransportChannel " |
Taylor Brandstetter
2016/05/19 22:50:07
Update the log message
honghaiz3
2016/05/19 22:58:23
Done.
|