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

Unified Diff: net/tools/quic/quic_simple_server_stream.h

Issue 2537773006: Extract a QuicSpdyServerStreamBase class for code sharing between QuicSimpleServerStream and GfeQui… (Closed)
Patch Set: 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
Index: net/tools/quic/quic_simple_server_stream.h
diff --git a/net/tools/quic/quic_simple_server_stream.h b/net/tools/quic/quic_simple_server_stream.h
index 7cb1819c988a1cd58896b2156551b5e6778b5bca..4c8fe356d0555a8bdebaf8c3721bb50ac25de10f 100644
--- a/net/tools/quic/quic_simple_server_stream.h
+++ b/net/tools/quic/quic_simple_server_stream.h
@@ -13,6 +13,7 @@
#include "net/quic/core/quic_packets.h"
#include "net/quic/core/quic_spdy_stream.h"
#include "net/spdy/spdy_framer.h"
+#include "net/tools/quic/quic_spdy_server_stream_base.h"
#include "net/tools/quic/quic_http_response_cache.h"
namespace net {
@@ -24,7 +25,7 @@ class QuicSimpleServerStreamPeer;
// All this does right now is aggregate data, and on fin, send an HTTP
// response.
-class QuicSimpleServerStream : public QuicSpdyStream {
+class QuicSimpleServerStream : public QuicSpdyServerStreamBase {
public:
QuicSimpleServerStream(QuicStreamId id,
QuicSpdySession* session,

Powered by Google App Engine
This is Rietveld 408576698