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

Unified Diff: components/domain_reliability/uploader_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
Index: components/domain_reliability/uploader_unittest.cc
diff --git a/components/domain_reliability/uploader_unittest.cc b/components/domain_reliability/uploader_unittest.cc
index 808ffc3901040c046880f333f2cf744b1ae69761..5f13a1c6067059d4fb8a3e300ddff68ff6b38d5b 100644
--- a/components/domain_reliability/uploader_unittest.cc
+++ b/components/domain_reliability/uploader_unittest.cc
@@ -52,7 +52,8 @@ class UploadMockURLRequestJob : public net::URLRequestJob {
void Start() override {
int rv = upload_stream_->Init(
base::Bind(&UploadMockURLRequestJob::OnStreamInitialized,
- base::Unretained(this)));
+ base::Unretained(this)),
+ net::BoundNetLog());
if (rv == net::ERR_IO_PENDING)
return;
OnStreamInitialized(rv);
« no previous file with comments | « components/cronet/android/test/test_upload_data_stream_handler.cc ('k') | content/browser/loader/resource_loader_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698