| 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);
|
|
|