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) { |