Index: net/http/http_auth_handler.h |
diff --git a/net/http/http_auth_handler.h b/net/http/http_auth_handler.h |
index 908b0659e926f40e805947b9fd7bb22494c4d932..f5ce1be024e3758a34b25801df973ad723361cb8 100644 |
--- a/net/http/http_auth_handler.h |
+++ b/net/http/http_auth_handler.h |
@@ -123,14 +123,14 @@ class HttpAuthHandler { |
// requires an identity. |
// TODO(wtc): Find a better way to handle a multi-round challenge-response |
// sequence used by a connection-based authentication scheme. |
- virtual bool NeedsIdentity() { return true; } |
+ virtual bool NeedsIdentity(); |
// Returns whether the default credentials may be used for the |origin| passed |
// into |InitFromChallenge|. If true, the user does not need to be prompted |
// for username and password to establish credentials. |
// NOTE: SSO is a potential security risk. |
// TODO(cbentzel): Add a pointer to Firefox documentation about risk. |
- virtual bool AllowsDefaultCredentials() { return false; } |
+ virtual bool AllowsDefaultCredentials(); |
protected: |
enum Property { |