| Index: net/spdy/spdy_stream_test_util.h
|
| diff --git a/net/spdy/spdy_stream_test_util.h b/net/spdy/spdy_stream_test_util.h
|
| index 76ea49ee198ffb5b4ba021be2cfa7d7301dcf35d..293bd7af39f78ea68430064f576b9c0c22fbef43 100644
|
| --- a/net/spdy/spdy_stream_test_util.h
|
| +++ b/net/spdy/spdy_stream_test_util.h
|
| @@ -17,6 +17,7 @@ namespace test {
|
| class TestSpdyStreamDelegate : public SpdyStream::Delegate {
|
| public:
|
| TestSpdyStreamDelegate(SpdyStream* stream,
|
| + SpdyHeaderBlock* headers,
|
| IOBufferWithSize* buf,
|
| const CompletionCallback& callback);
|
| virtual ~TestSpdyStreamDelegate();
|
| @@ -41,6 +42,7 @@ class TestSpdyStreamDelegate : public SpdyStream::Delegate {
|
|
|
| private:
|
| SpdyStream* stream_;
|
| + scoped_ptr<SpdyHeaderBlock> headers_;
|
| scoped_refptr<IOBufferWithSize> buf_;
|
| CompletionCallback callback_;
|
| bool send_headers_completed_;
|
|
|