| Index: net/http/http_auth_handler_unittest.cc
|
| diff --git a/net/http/http_auth_handler_unittest.cc b/net/http/http_auth_handler_unittest.cc
|
| index 2055032814d1871f0a99fed14ea9d7f5fdebc444..b684cb2dba8ba177565ff9ce1a18d43a6efac7b1 100644
|
| --- a/net/http/http_auth_handler_unittest.cc
|
| +++ b/net/http/http_auth_handler_unittest.cc
|
| @@ -43,12 +43,12 @@ TEST(HttpAuthHandlerTest, NetLog) {
|
| challenge.begin(), challenge.end());
|
| HttpAuthHandlerMock mock_handler;
|
| TestNetLog test_net_log;
|
| - BoundNetLog bound_net_log(
|
| - BoundNetLog::Make(&test_net_log, NetLogSourceType::NONE));
|
| + NetLogWithSource net_log(
|
| + NetLogWithSource::Make(&test_net_log, NetLogSourceType::NONE));
|
|
|
| SSLInfo empty_ssl_info;
|
| mock_handler.InitFromChallenge(&tokenizer, target, empty_ssl_info,
|
| - origin, bound_net_log);
|
| + origin, net_log);
|
| mock_handler.SetGenerateExpectation(async, rv);
|
| mock_handler.GenerateAuthToken(&credentials, &request,
|
| test_callback.callback(), &auth_token);
|
|
|