| Index: net/spdy/spdy_protocol.cc
|
| diff --git a/net/spdy/spdy_protocol.cc b/net/spdy/spdy_protocol.cc
|
| index 9f311d6b63e500f5c3cc9b2dd9665f5c6ce4c2c6..58a6b2d64d17ac2176bb1f499475c07576837c01 100644
|
| --- a/net/spdy/spdy_protocol.cc
|
| +++ b/net/spdy/spdy_protocol.cc
|
| @@ -11,10 +11,8 @@ SpdyFrameWithNameValueBlockIR::SpdyFrameWithNameValueBlockIR(
|
|
|
| SpdyFrameWithNameValueBlockIR::~SpdyFrameWithNameValueBlockIR() {}
|
|
|
| -SpdyDataIR::SpdyDataIR(SpdyStreamId stream_id, const base::StringPiece& data)
|
| - : SpdyFrameWithFinIR(stream_id),
|
| - padded_(false),
|
| - padding_payload_len_(0) {
|
| +SpdyDataIR::SpdyDataIR(SpdyStreamId stream_id, base::StringPiece data)
|
| + : SpdyFrameWithFinIR(stream_id), padded_(false), padding_payload_len_(0) {
|
| SetDataDeep(data);
|
| }
|
|
|
| @@ -807,7 +805,7 @@ void SpdyPingIR::Visit(SpdyFrameVisitor* visitor) const {
|
|
|
| SpdyGoAwayIR::SpdyGoAwayIR(SpdyStreamId last_good_stream_id,
|
| SpdyGoAwayStatus status,
|
| - const base::StringPiece& description)
|
| + base::StringPiece description)
|
| : description_(description) {
|
| set_last_good_stream_id(last_good_stream_id);
|
| set_status(status);
|
|
|