| Index: net/spdy/spdy_stream_spdy3_unittest.cc
|
| diff --git a/net/spdy/spdy_stream_spdy3_unittest.cc b/net/spdy/spdy_stream_spdy3_unittest.cc
|
| index 53a8f9a4b07fc6ef9f5e9684caf688e0ef1a97e7..3b07ea474fc8de00da4a4a7d234b23ff2e491b2e 100644
|
| --- a/net/spdy/spdy_stream_spdy3_unittest.cc
|
| +++ b/net/spdy/spdy_stream_spdy3_unittest.cc
|
| @@ -23,7 +23,7 @@ namespace net {
|
| namespace {
|
|
|
| SpdyFrame* ConstructSpdyBodyFrame(const char* data, int length) {
|
| - BufferedSpdyFramer framer(3);
|
| + BufferedSpdyFramer framer(3, false);
|
| return framer.CreateDataFrame(1, data, length, DATA_FLAG_NONE);
|
| }
|
|
|
| @@ -44,18 +44,11 @@ class SpdyStreamSpdy3Test : public testing::Test {
|
| return session;
|
| }
|
|
|
| - virtual void SetUp() {
|
| - SpdySession::set_default_protocol(kProtoSPDY3);
|
| - }
|
| -
|
| virtual void TearDown() {
|
| MessageLoop::current()->RunUntilIdle();
|
| }
|
|
|
| scoped_refptr<HttpNetworkSession> session_;
|
| -
|
| - private:
|
| - SpdyTestStateHelper spdy_state_;
|
| };
|
|
|
| TEST_F(SpdyStreamSpdy3Test, SendDataAfterOpen) {
|
|
|