Index: net/http/http_auth_handler.cc |
diff --git a/net/http/http_auth_handler.cc b/net/http/http_auth_handler.cc |
index e61de2f02fc05ecc345d0b1d4f5ce40718a4a61c..7aa114e6add3fac7fc004914ce6aadce336c0c61 100644 |
--- a/net/http/http_auth_handler.cc |
+++ b/net/http/http_auth_handler.cc |
@@ -5,6 +5,7 @@ |
#include "net/http/http_auth_handler.h" |
#include "base/logging.h" |
+#include "net/base/net_errors.h" |
namespace net { |
@@ -28,4 +29,12 @@ bool HttpAuthHandler::InitFromChallenge( |
return ok; |
} |
+int HttpAuthHandler::ResolveCanonicalName(net::HostResolver* host_resolver, |
+ CompletionCallback* callback, |
+ const BoundNetLog& net_log) { |
+ NOTREACHED(); |
+ LOG(ERROR) << ErrorToString(ERR_NOT_IMPLEMENTED); |
+ return ERR_NOT_IMPLEMENTED; |
+} |
+ |
} // namespace net |