summaryrefslogtreecommitdiffstats
path: root/net/quic/quic_http_stream.h
diff options
context:
space:
mode:
authorrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-25 18:31:05 +0000
committerrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-25 18:31:05 +0000
commit9d9e7939cc8eb945dd8830afdc62f20842822880 (patch)
tree737bd98c65a4e5cbd28450b7328a1157c364852e /net/quic/quic_http_stream.h
parent4172b0844fa61f550d1807afa0fb1a7a70d3215e (diff)
downloadchromium_src-9d9e7939cc8eb945dd8830afdc62f20842822880.zip
chromium_src-9d9e7939cc8eb945dd8830afdc62f20842822880.tar.gz
chromium_src-9d9e7939cc8eb945dd8830afdc62f20842822880.tar.bz2
Remove the --use-spdy-over-quic command line option. Always use SPDY over QUIC.
Review URL: https://chromiumcodereview.appspot.com/12326073 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184442 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/quic/quic_http_stream.h')
-rw-r--r--net/quic/quic_http_stream.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/net/quic/quic_http_stream.h b/net/quic/quic_http_stream.h
index 8e0853c..6716dd5 100644
--- a/net/quic/quic_http_stream.h
+++ b/net/quic/quic_http_stream.h
@@ -21,7 +21,7 @@ class NET_EXPORT_PRIVATE QuicHttpStream :
public QuicReliableClientStream::Delegate,
public HttpStream {
public:
- QuicHttpStream(QuicReliableClientStream* stream, bool use_spdy);
+ explicit QuicHttpStream(QuicReliableClientStream* stream);
virtual ~QuicHttpStream();
@@ -113,9 +113,6 @@ class NET_EXPORT_PRIVATE QuicHttpStream :
bool response_headers_received_;
- // True if the request and response bodies should be serialized via SPDY.
- bool use_spdy_;
-
// Serialized HTTP request.
std::string request_;