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

Unified Diff: net/base/auth.cc

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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) {
}
AuthCredentials::~AuthCredentials() {
« no previous file with comments | « net/base/auth.h ('k') | net/base/backoff_entry.cc » ('j') | net/base/mime_sniffer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698