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

Unified Diff: net/spdy/spdy_stream_test_util.h

Issue 10810069: SPDY: Add WriteHeaders interface to SpdySession and SpdyStream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: spdy3 Created 8 years, 5 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: 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_;

Powered by Google App Engine
This is Rietveld 408576698