Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Unified Diff: net/base/auth.cc

Issue 647883002: git cl format the final third of the net/base directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() {

Powered by Google App Engine
This is Rietveld 408576698