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

Unified Diff: trunk/src/net/tools/quic/quic_spdy_client_stream.cc

Issue 15018013: Revert 198736 "Land Recent QUIC changes" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 7 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: trunk/src/net/tools/quic/quic_spdy_client_stream.cc
===================================================================
--- trunk/src/net/tools/quic/quic_spdy_client_stream.cc (revision 198763)
+++ trunk/src/net/tools/quic/quic_spdy_client_stream.cc (working copy)
@@ -59,12 +59,8 @@
ssize_t QuicSpdyClientStream::SendRequest(const BalsaHeaders& headers,
StringPiece body,
bool fin) {
- SpdyHeaderBlock header_block =
- SpdyUtils::RequestHeadersToSpdyHeaders(headers);
+ string headers_string = SpdyUtils::SerializeRequestHeaders(headers);
- string headers_string =
- session()->compressor()->CompressHeaders(header_block);
-
bool has_body = !body.empty();
WriteData(headers_string, fin && !has_body);
« no previous file with comments | « trunk/src/net/tools/quic/quic_reliable_server_stream_test.cc ('k') | trunk/src/net/tools/quic/quic_spdy_server_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698