| Index: net/spdy/chromium/spdy_session_unittest.cc
|
| diff --git a/net/spdy/chromium/spdy_session_unittest.cc b/net/spdy/chromium/spdy_session_unittest.cc
|
| index dbd985ddf4c8e3ef4b490e8b8287b1f0ee27ab13..e08c1d07189c7e5836c1b1556f8062c6c4960114 100644
|
| --- a/net/spdy/chromium/spdy_session_unittest.cc
|
| +++ b/net/spdy/chromium/spdy_session_unittest.cc
|
| @@ -2851,7 +2851,8 @@ TEST_F(SpdySessionTest, ReadDataWithoutYielding) {
|
| session_deps_.host_resolver->set_synchronous_mode(true);
|
| session_deps_.time_func = InstantaneousReads;
|
|
|
| - BufferedSpdyFramer framer;
|
| + NetLogWithSource net_log;
|
| + BufferedSpdyFramer framer(net_log);
|
|
|
| SpdySerializedFrame req1(
|
| spdy_util_.ConstructSpdyGet(nullptr, 0, 1, MEDIUM, true));
|
| @@ -3064,7 +3065,8 @@ TEST_F(SpdySessionTest, TestYieldingDuringReadData) {
|
| session_deps_.host_resolver->set_synchronous_mode(true);
|
| session_deps_.time_func = InstantaneousReads;
|
|
|
| - BufferedSpdyFramer framer;
|
| + NetLogWithSource net_log;
|
| + BufferedSpdyFramer framer(net_log);
|
|
|
| SpdySerializedFrame req1(
|
| spdy_util_.ConstructSpdyGet(nullptr, 0, 1, MEDIUM, true));
|
| @@ -3158,7 +3160,8 @@ TEST_F(SpdySessionTest, TestYieldingDuringAsyncReadData) {
|
| session_deps_.host_resolver->set_synchronous_mode(true);
|
| session_deps_.time_func = InstantaneousReads;
|
|
|
| - BufferedSpdyFramer framer;
|
| + NetLogWithSource net_log;
|
| + BufferedSpdyFramer framer(net_log);
|
|
|
| SpdySerializedFrame req1(
|
| spdy_util_.ConstructSpdyGet(nullptr, 0, 1, MEDIUM, true));
|
|
|