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

Unified Diff: chrome/browser/devtools/devtools_network_controller_unittest.cc

Issue 2227503003: Add net log to UploadDataStream. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: typo Created 4 years, 4 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 | « no previous file | chrome/browser/devtools/devtools_network_upload_data_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/devtools/devtools_network_controller_unittest.cc
diff --git a/chrome/browser/devtools/devtools_network_controller_unittest.cc b/chrome/browser/devtools/devtools_network_controller_unittest.cc
index 0e51b24f9ecb64a500eb92e7b31e5703cc9d9820..25376301da2707dcb17c793cb984485f3636da07 100644
--- a/chrome/browser/devtools/devtools_network_controller_unittest.cc
+++ b/chrome/browser/devtools/devtools_network_controller_unittest.cc
@@ -126,8 +126,8 @@ class DevToolsNetworkControllerHelper {
}
int ReadUploadData() {
- EXPECT_EQ(net::OK,
- transaction_->custom_upload_data_stream_->Init(completion_callback_));
+ EXPECT_EQ(net::OK, transaction_->custom_upload_data_stream_->Init(
+ completion_callback_, net::BoundNetLog()));
return transaction_->custom_upload_data_stream_->Read(
buffer_.get(), 64, completion_callback_);
}
« no previous file with comments | « no previous file | chrome/browser/devtools/devtools_network_upload_data_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698