Chromium Code Reviews| Index: net/base/auth.cc |
| diff --git a/net/base/auth.cc b/net/base/auth.cc |
| index 332e1883855873618a4261feebd1c63f17e9cf57..aa015c6095b6a10798f958a91e7a2624c9199c49 100644 |
| --- a/net/base/auth.cc |
| +++ b/net/base/auth.cc |
| @@ -13,8 +13,7 @@ AuthChallengeInfo::AuthChallengeInfo() : is_proxy(false) { |
| bool AuthChallengeInfo::Equals(const AuthChallengeInfo& that) const { |
| return (this->is_proxy == that.is_proxy && |
| this->challenger.Equals(that.challenger) && |
| - this->scheme == that.scheme && |
| - this->realm == that.realm); |
| + this->scheme == that.scheme && this->realm == that.realm); |
| } |
| AuthChallengeInfo::~AuthChallengeInfo() { |
| @@ -31,8 +30,7 @@ AuthCredentials::AuthCredentials() { |
| AuthCredentials::AuthCredentials(const base::string16& username, |
| const base::string16& password) |
| - : username_(username), |
| - password_(password) { |
| + : username_(username), password_(password) { |
|
mef
2014/10/10 20:38:17
I've heard claims that those should be on separate
|
| } |
| AuthCredentials::~AuthCredentials() { |