diff options
Diffstat (limited to 'net/http/http_auth_handler_negotiate_posix.cc')
-rw-r--r-- | net/http/http_auth_handler_negotiate_posix.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/http/http_auth_handler_negotiate_posix.cc b/net/http/http_auth_handler_negotiate_posix.cc index 270ee5b..3870e8f 100644 --- a/net/http/http_auth_handler_negotiate_posix.cc +++ b/net/http/http_auth_handler_negotiate_posix.cc @@ -69,9 +69,8 @@ bool HttpAuthHandlerNegotiate::NeedsCanonicalName() { return false; } -int HttpAuthHandlerNegotiate::ResolveCanonicalName(HostResolver* host_resolver, - CompletionCallback* callback, - const BoundNetLog& net_log) { +int HttpAuthHandlerNegotiate::ResolveCanonicalName( + HostResolver* host_resolver, CompletionCallback* callback) { NOTREACHED(); LOG(ERROR) << ErrorToString(ERR_NOT_IMPLEMENTED); return ERR_NOT_IMPLEMENTED; @@ -90,6 +89,7 @@ int HttpAuthHandlerNegotiate::Factory::CreateAuthHandler( const GURL& origin, CreateReason reason, int digest_nonce_count, + const BoundNetLog& net_log, scoped_refptr<HttpAuthHandler>* handler) { return ERR_UNSUPPORTED_AUTH_SCHEME; } |