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

Unified Diff: webrtc/p2p/quic/quictransport.h

Issue 2517883002: Refactoring that removes P2PTransport and DtlsTransport classes. (Closed)
Patch Set: Adding stub transport.h file for backwards compat. Created 4 years 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/client/socketmonitor.h ('k') | webrtc/pc/channel_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/quic/quictransport.h
diff --git a/webrtc/p2p/quic/quictransport.h b/webrtc/p2p/quic/quictransport.h
index 14bd13f3b2befff5b941c1de25dc4df533cc775a..5e834e02f58e68e836df042b52de4331e8e88a79 100644
--- a/webrtc/p2p/quic/quictransport.h
+++ b/webrtc/p2p/quic/quictransport.h
@@ -15,7 +15,7 @@
#include <map>
#include <memory>
-#include "webrtc/p2p/base/transport.h"
+#include "webrtc/p2p/base/jseptransport.h"
#include "webrtc/p2p/quic/quictransportchannel.h"
namespace cricket {
@@ -23,7 +23,11 @@ namespace cricket {
class P2PTransportChannel;
class PortAllocator;
-// TODO(mikescarlett): Refactor to avoid code duplication with DtlsTransport.
+// TODO(deadbeef): To get QUIC working with TransportController again, would
+// need to merge this class with Transport (or make separate DTLS/QUIC
+// subclasses). The only difference between the two (as of typing this) is that
+// the QUIC channel *requires* a fingerprint, whereas the DTLS channel can
+// operate in a passthrough mode when SDES is used.
class QuicTransport : public Transport {
public:
QuicTransport(const std::string& name,
« no previous file with comments | « webrtc/p2p/client/socketmonitor.h ('k') | webrtc/pc/channel_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698