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

Unified Diff: net/ftp/ftp_auth_cache.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/ftp/ftp_auth_cache.cc
diff --git a/net/ftp/ftp_auth_cache.cc b/net/ftp/ftp_auth_cache.cc
index 370cee57379a3e00fc591c47b30523bec95abfc7..f664a9516f78f1765e289b03cd3c3e7bfb39ce46 100644
--- a/net/ftp/ftp_auth_cache.cc
+++ b/net/ftp/ftp_auth_cache.cc
@@ -14,15 +14,17 @@ const size_t FtpAuthCache::kMaxEntries = 10;
FtpAuthCache::Entry::Entry(const GURL& origin,
const AuthCredentials& credentials)
- : origin(origin),
- credentials(credentials) {
+ : origin(origin), credentials(credentials) {
}
-FtpAuthCache::Entry::~Entry() {}
+FtpAuthCache::Entry::~Entry() {
+}
-FtpAuthCache::FtpAuthCache() {}
+FtpAuthCache::FtpAuthCache() {
+}
-FtpAuthCache::~FtpAuthCache() {}
+FtpAuthCache::~FtpAuthCache() {
+}
FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) {
for (EntryList::iterator it = entries_.begin(); it != entries_.end(); ++it) {

Powered by Google App Engine
This is Rietveld 408576698