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

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

Issue 2517883002: Refactoring that removes P2PTransport and DtlsTransport classes. (Closed)
Patch Set: Leaving comments about what we'd need to do to support QUIC again. Created 4 years, 1 month 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/p2ptransportchannel.cc
diff --git a/webrtc/p2p/base/p2ptransportchannel.cc b/webrtc/p2p/base/p2ptransportchannel.cc
index e1a955c69611f21321ea5fa35772666e7fa45aae..5f858c4858f952174b878891a875648bbd69de43 100644
--- a/webrtc/p2p/base/p2ptransportchannel.cc
+++ b/webrtc/p2p/base/p2ptransportchannel.cc
@@ -99,12 +99,6 @@ static constexpr int b_is_better = -1;
P2PTransportChannel::P2PTransportChannel(const std::string& transport_name,
int component,
- P2PTransport* transport,
- PortAllocator* allocator)
- : P2PTransportChannel(transport_name, component, allocator) {}
-
-P2PTransportChannel::P2PTransportChannel(const std::string& transport_name,
- int component,
PortAllocator* allocator)
: TransportChannelImpl(transport_name, component),
allocator_(allocator),

Powered by Google App Engine
This is Rietveld 408576698