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

Unified Diff: webrtc/p2p/base/rawtransport.cc

Issue 1246913005: TransportController refactoring (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Set media engine on voice channel Created 5 years, 4 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
Index: webrtc/p2p/base/rawtransport.cc
diff --git a/webrtc/p2p/base/rawtransport.cc b/webrtc/p2p/base/rawtransport.cc
index 8ff00cd3e0bd4462d18b9e82bdb5003e128a2462..5fa583e82839fd92c321f225b3ddc1a153d4b043 100644
--- a/webrtc/p2p/base/rawtransport.cc
+++ b/webrtc/p2p/base/rawtransport.cc
@@ -17,12 +17,9 @@
#if defined(FEATURE_ENABLE_PSTN)
namespace cricket {
-RawTransport::RawTransport(rtc::Thread* signaling_thread,
- rtc::Thread* worker_thread,
- const std::string& content_name,
+RawTransport::RawTransport(const std::string& content_name,
PortAllocator* allocator)
- : Transport(signaling_thread, worker_thread,
- content_name, NS_GINGLE_RAW, allocator) {
+ : Transport(content_name, NS_GINGLE_RAW, allocator) {
}
RawTransport::~RawTransport() {
@@ -31,7 +28,6 @@ RawTransport::~RawTransport() {
TransportChannelImpl* RawTransport::CreateTransportChannel(int component) {
return new RawTransportChannel(content_name(), component, this,
- worker_thread(),
port_allocator());
}

Powered by Google App Engine
This is Rietveld 408576698