Index: net/http/bidirectional_stream_unittest.cc |
diff --git a/net/http/bidirectional_stream_unittest.cc b/net/http/bidirectional_stream_unittest.cc |
index 6658d826a1d0ae878aa0327ca8ec5644de094f68..e7be576bdc3dcac036c923b6e41d9874a62fb718 100644 |
--- a/net/http/bidirectional_stream_unittest.cc |
+++ b/net/http/bidirectional_stream_unittest.cc |
@@ -353,7 +353,7 @@ TEST_F(BidirectionalStreamTest, CreateInsecureStream) { |
} |
// Simulates user calling ReadData after END_STREAM has been received in |
-// BidirectionalStreamSpdyJob. |
+// BidirectionalStreamSpdyImpl. |
TEST_F(BidirectionalStreamTest, TestReadDataAfterClose) { |
scoped_ptr<SpdyFrame> req( |
spdy_util_.ConstructSpdyGet("https://www.example.org", 1, LOWEST)); |
@@ -398,7 +398,7 @@ TEST_F(BidirectionalStreamTest, TestReadDataAfterClose) { |
scoped_refptr<IOBuffer> read_buffer(new IOBuffer(kReadBufferSize)); |
// Create a MockTimer. Retain a raw pointer since the underlying |
- // BidirectionalStreamJob owns it. |
+ // BidirectionalStreamImpl owns it. |
MockTimer* timer = new MockTimer(); |
scoped_ptr<TestDelegateBase> delegate(new TestDelegateBase( |
read_buffer.get(), kReadBufferSize, make_scoped_ptr(timer))); |
@@ -549,7 +549,7 @@ TEST_F(BidirectionalStreamTest, TestInterleaveReadDataAndSendData) { |
delegate->GetTotalReceivedBytes()); |
} |
-// Tests that BidirectionalStreamSpdyJob::OnClose will complete any remaining |
+// Tests that BidirectionalStreamSpdyImpl::OnClose will complete any remaining |
// read even if the read queue is empty. |
TEST_F(BidirectionalStreamTest, TestCompleteAsyncRead) { |
scoped_ptr<SpdyFrame> req( |