| Index: net/http/http_auth_handler_factory.cc
|
| diff --git a/net/http/http_auth_handler_factory.cc b/net/http/http_auth_handler_factory.cc
|
| index 8f7156297f96c22528ada085a5e13c9600dfd837..5a48aa222ab87f11db57faa7029cfe6237155498 100644
|
| --- a/net/http/http_auth_handler_factory.cc
|
| +++ b/net/http/http_auth_handler_factory.cc
|
| @@ -28,7 +28,7 @@ int HttpAuthHandlerFactory::CreateAuthHandlerFromString(
|
| HttpAuth::Target target,
|
| const SSLInfo& ssl_info,
|
| const GURL& origin,
|
| - const BoundNetLog& net_log,
|
| + const NetLogWithSource& net_log,
|
| std::unique_ptr<HttpAuthHandler>* handler) {
|
| HttpAuthChallengeTokenizer props(challenge.begin(), challenge.end());
|
| return CreateAuthHandler(&props, target, ssl_info, origin, CREATE_CHALLENGE,
|
| @@ -40,7 +40,7 @@ int HttpAuthHandlerFactory::CreatePreemptiveAuthHandlerFromString(
|
| HttpAuth::Target target,
|
| const GURL& origin,
|
| int digest_nonce_count,
|
| - const BoundNetLog& net_log,
|
| + const NetLogWithSource& net_log,
|
| std::unique_ptr<HttpAuthHandler>* handler) {
|
| HttpAuthChallengeTokenizer props(challenge.begin(), challenge.end());
|
| SSLInfo null_ssl_info;
|
| @@ -170,7 +170,7 @@ int HttpAuthHandlerRegistryFactory::CreateAuthHandler(
|
| const GURL& origin,
|
| CreateReason reason,
|
| int digest_nonce_count,
|
| - const BoundNetLog& net_log,
|
| + const NetLogWithSource& net_log,
|
| std::unique_ptr<HttpAuthHandler>* handler) {
|
| std::string scheme = challenge->scheme();
|
| if (scheme.empty()) {
|
|
|