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

Side by Side Diff: components/domain_reliability/uploader_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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/domain_reliability/uploader.h" 5 #include "components/domain_reliability/uploader.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <memory> 9 #include <memory>
10 10
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 int load_flags = request->load_flags(); 46 int load_flags = request->load_flags();
47 EXPECT_TRUE(load_flags & net::LOAD_DO_NOT_SEND_COOKIES); 47 EXPECT_TRUE(load_flags & net::LOAD_DO_NOT_SEND_COOKIES);
48 EXPECT_TRUE(load_flags & net::LOAD_DO_NOT_SAVE_COOKIES); 48 EXPECT_TRUE(load_flags & net::LOAD_DO_NOT_SAVE_COOKIES);
49 } 49 }
50 50
51 protected: 51 protected:
52 void Start() override { 52 void Start() override {
53 int rv = upload_stream_->Init( 53 int rv = upload_stream_->Init(
54 base::Bind(&UploadMockURLRequestJob::OnStreamInitialized, 54 base::Bind(&UploadMockURLRequestJob::OnStreamInitialized,
55 base::Unretained(this)), 55 base::Unretained(this)),
56 net::BoundNetLog()); 56 net::NetLogWithSource());
57 if (rv == net::ERR_IO_PENDING) 57 if (rv == net::ERR_IO_PENDING)
58 return; 58 return;
59 OnStreamInitialized(rv); 59 OnStreamInitialized(rv);
60 } 60 }
61 61
62 void SetUpload(net::UploadDataStream* upload_stream) override { 62 void SetUpload(net::UploadDataStream* upload_stream) override {
63 upload_stream_ = upload_stream; 63 upload_stream_ = upload_stream;
64 } 64 }
65 65
66 private: 66 private:
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 TestUploadCallback c; 273 TestUploadCallback c;
274 uploader()->UploadReport("{}", 1, GURL(kUploadURL), c.callback()); 274 uploader()->UploadReport("{}", 1, GURL(kUploadURL), c.callback());
275 base::RunLoop().RunUntilIdle(); 275 base::RunLoop().RunUntilIdle();
276 EXPECT_EQ(1u, c.called_count()); 276 EXPECT_EQ(1u, c.called_count());
277 277
278 EXPECT_EQ(2, interceptor()->last_upload_depth()); 278 EXPECT_EQ(2, interceptor()->last_upload_depth());
279 } 279 }
280 280
281 } // namespace 281 } // namespace
282 } // namespace domain_reliability 282 } // namespace domain_reliability
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698