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

Unified Diff: content/browser/loader/upload_data_stream_builder_unittest.cc

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 years, 3 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: content/browser/loader/upload_data_stream_builder_unittest.cc
diff --git a/content/browser/loader/upload_data_stream_builder_unittest.cc b/content/browser/loader/upload_data_stream_builder_unittest.cc
index 815cb835b193cb25733f96a85bc6f2242e981f95..4ccd24cc96de5d0e72f70869798c4db3db305660 100644
--- a/content/browser/loader/upload_data_stream_builder_unittest.cc
+++ b/content/browser/loader/upload_data_stream_builder_unittest.cc
@@ -137,7 +137,7 @@ TEST(UploadDataStreamBuilderTest,
net::TestCompletionCallback init_callback;
ASSERT_EQ(net::ERR_IO_PENDING,
- upload->Init(init_callback.callback(), net::BoundNetLog()));
+ upload->Init(init_callback.callback(), net::NetLogWithSource()));
EXPECT_EQ(net::OK, init_callback.WaitForResult());
EXPECT_EQ(kZeroLength, upload->size());
@@ -185,7 +185,7 @@ TEST(UploadDataStreamBuilderTest, ResetUploadStreamWithBlob) {
net::TestCompletionCallback init_callback;
ASSERT_EQ(net::OK,
- upload->Init(init_callback.callback(), net::BoundNetLog()));
+ upload->Init(init_callback.callback(), net::NetLogWithSource()));
// Read part of the data.
const int kBufferLength = 4;
@@ -200,7 +200,7 @@ TEST(UploadDataStreamBuilderTest, ResetUploadStreamWithBlob) {
// Reset.
ASSERT_EQ(net::OK,
- upload->Init(init_callback.callback(), net::BoundNetLog()));
+ upload->Init(init_callback.callback(), net::NetLogWithSource()));
// Read all the data.
buffer = new net::IOBufferWithSize(kBlobDataLength);

Powered by Google App Engine
This is Rietveld 408576698