Chromium Code Reviews| Index: webrtc/p2p/base/transportcontroller.h | 
| diff --git a/webrtc/p2p/base/transportcontroller.h b/webrtc/p2p/base/transportcontroller.h | 
| index 5f3fccc868822a1eda564345d7e2a5c7ce7b0d2e..ac3fea80d39f623a79e493c6883cd274d3fe3024 100644 | 
| --- a/webrtc/p2p/base/transportcontroller.h | 
| +++ b/webrtc/p2p/base/transportcontroller.h | 
| @@ -24,6 +24,7 @@ | 
| namespace rtc { | 
| class Thread; | 
| +struct 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* pt); | 
| 
 
pthatcher1
2016/10/14 17:59:17
pt => transport
 
johan
2016/10/17 15:47:55
Done.
 
 | 
| void OnChannelReceivingState_n(TransportChannel* channel); | 
| void OnChannelGatheringState_n(TransportChannelImpl* channel); | 
| void OnChannelCandidateGathered_n(TransportChannelImpl* channel, |