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

Unified Diff: net/http/bidirectional_stream_unittest.cc

Issue 1812823010: Rename net::BidirectionalStream*Job to net::BidirectionalStream*Impl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments Created 4 years, 9 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
« no previous file with comments | « net/http/bidirectional_stream_job.cc ('k') | net/http/http_network_transaction.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/bidirectional_stream_unittest.cc
diff --git a/net/http/bidirectional_stream_unittest.cc b/net/http/bidirectional_stream_unittest.cc
index 6d4cb818406c1f30fac9c352b2ceeaa4e03f67ab..1fa6155d26766fd4b0bd296a8d3393a6aa9c1317 100644
--- a/net/http/bidirectional_stream_unittest.cc
+++ b/net/http/bidirectional_stream_unittest.cc
@@ -354,7 +354,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));
@@ -399,7 +399,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)));
@@ -550,7 +550,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(
« no previous file with comments | « net/http/bidirectional_stream_job.cc ('k') | net/http/http_network_transaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698