Index: webrtc/p2p/base/transportcontroller.h |
diff --git a/webrtc/p2p/base/transportcontroller.h b/webrtc/p2p/base/transportcontroller.h |
index 5f3fccc868822a1eda564345d7e2a5c7ce7b0d2e..86b9c1dc6822448612cb894c1d4d39cf2ac76962 100644 |
--- a/webrtc/p2p/base/transportcontroller.h |
+++ b/webrtc/p2p/base/transportcontroller.h |
@@ -24,6 +24,7 @@ |
namespace rtc { |
class Thread; |
+class PacketTransportInterface; |
} |
namespace webrtc { |
class MetricsObserverInterface; |
@@ -204,7 +205,7 @@ class TransportController : public sigslot::has_slots<>, |
bool GetStats_n(const std::string& transport_name, TransportStats* stats); |
// Handlers for signals from Transport. |
- void OnChannelWritableState_n(TransportChannel* channel); |
+ void OnChannelWritableState_n(rtc::PacketTransportInterface* transport); |
void OnChannelReceivingState_n(TransportChannel* channel); |
void OnChannelGatheringState_n(TransportChannelImpl* channel); |
void OnChannelCandidateGathered_n(TransportChannelImpl* channel, |