Index: webrtc/p2p/base/faketransportcontroller.h |
diff --git a/webrtc/p2p/base/faketransportcontroller.h b/webrtc/p2p/base/faketransportcontroller.h |
index 5d0ceb434d8ce3b5f254409ef71be23d2d11ad04..f441a8119dca0d8c370504bc2b92869bb061569a 100644 |
--- a/webrtc/p2p/base/faketransportcontroller.h |
+++ b/webrtc/p2p/base/faketransportcontroller.h |
@@ -527,12 +527,12 @@ class FakeTransportController : public TransportController { |
SetIceRole(role); |
} |
- explicit FakeTransportController(rtc::Thread* worker_thread) |
- : TransportController(rtc::Thread::Current(), worker_thread, nullptr), |
+ explicit FakeTransportController(rtc::Thread* network_thread) |
+ : TransportController(rtc::Thread::Current(), network_thread, nullptr), |
fail_create_channel_(false) {} |
- FakeTransportController(rtc::Thread* worker_thread, IceRole role) |
- : TransportController(rtc::Thread::Current(), worker_thread, nullptr), |
+ FakeTransportController(rtc::Thread* network_thread, IceRole role) |
+ : TransportController(rtc::Thread::Current(), network_thread, nullptr), |
fail_create_channel_(false) { |
SetIceRole(role); |
} |