Index: net/http/http_auth_handler_negotiate_posix.cc |
diff --git a/net/http/http_auth_handler_negotiate_posix.cc b/net/http/http_auth_handler_negotiate_posix.cc |
index 2b965977d92600d1d51515f060c37c9b6a032bd4..7b578535253a346dd787f260ce756776ae3a4512 100644 |
--- a/net/http/http_auth_handler_negotiate_posix.cc |
+++ b/net/http/http_auth_handler_negotiate_posix.cc |
@@ -61,7 +61,20 @@ int HttpAuthHandlerNegotiate::GenerateDefaultAuthToken( |
return ERR_NOT_IMPLEMENTED; |
} |
-HttpAuthHandlerNegotiate::Factory::Factory() { |
+bool HttpAuthHandlerNegotiate::NeedsCanonicalName() { |
+ return false; |
+} |
+ |
+int HttpAuthHandlerNegotiate::ResolveCanonicalName(HostResolver* host_resolver, |
+ CompletionCallback* callback, |
+ const BoundNetLog& net_log) { |
+ NOTREACHED(); |
+ LOG(ERROR) << ErrorToString(ERR_NOT_IMPLEMENTED); |
+ return ERR_NOT_IMPLEMENTED; |
+} |
+ |
+HttpAuthHandlerNegotiate::Factory::Factory() |
+ : disable_cname_lookup_(false), use_port_(false) { |
} |
HttpAuthHandlerNegotiate::Factory::~Factory() { |