summaryrefslogtreecommitdiffstats
path: root/net/base/auth.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/base/auth.h')
-rw-r--r--net/base/auth.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/net/base/auth.h b/net/base/auth.h
index 1704e5b..ec31bfc 100644
--- a/net/base/auth.h
+++ b/net/base/auth.h
@@ -16,17 +16,6 @@ namespace net {
class AuthChallengeInfo :
public base::RefCountedThreadSafe<AuthChallengeInfo> {
public:
- bool operator==(const AuthChallengeInfo& that) const {
- return (this->is_proxy == that.is_proxy &&
- this->host_and_port == that.host_and_port &&
- this->scheme == that.scheme &&
- this->realm == that.realm);
- }
-
- bool operator!=(const AuthChallengeInfo& that) const {
- return !(*this == that);
- }
-
bool is_proxy; // true for Proxy-Authenticate, false for WWW-Authenticate.
std::wstring host_and_port; // <host>:<port> of the server asking for auth
// (could be the proxy).