summaryrefslogtreecommitdiffstats
path: root/net/http/http_auth_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/http/http_auth_handler.cc')
-rw-r--r--net/http/http_auth_handler.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/net/http/http_auth_handler.cc b/net/http/http_auth_handler.cc
index 7c57cc7..661fc64 100644
--- a/net/http/http_auth_handler.cc
+++ b/net/http/http_auth_handler.cc
@@ -12,11 +12,13 @@ namespace net {
bool HttpAuthHandler::InitFromChallenge(
HttpAuth::ChallengeTokenizer* challenge,
HttpAuth::Target target,
- const GURL& origin) {
+ const GURL& origin,
+ const BoundNetLog& net_log) {
origin_ = origin;
target_ = target;
score_ = -1;
properties_ = -1;
+ net_log_ = net_log;
auth_challenge_ = challenge->challenge_text();
bool ok = Init(challenge);
@@ -31,8 +33,7 @@ bool HttpAuthHandler::InitFromChallenge(
}
int HttpAuthHandler::ResolveCanonicalName(net::HostResolver* host_resolver,
- CompletionCallback* callback,
- const BoundNetLog& net_log) {
+ CompletionCallback* callback) {
NOTREACHED();
LOG(ERROR) << ErrorToString(ERR_NOT_IMPLEMENTED);
return ERR_NOT_IMPLEMENTED;