Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(433)

Unified Diff: webrtc/p2p/base/faketransportcontroller.h

Issue 2396513003: Restore thread name consistency for webrtc/p2p/ . (Closed)
Patch Set: Explicit call rtc::Thread::CreateWithSocketServer() for unit test. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/p2p/base/dtlstransportchannel.cc ('k') | webrtc/p2p/base/p2ptransport.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « webrtc/p2p/base/dtlstransportchannel.cc ('k') | webrtc/p2p/base/p2ptransport.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698