summaryrefslogtreecommitdiffstats
path: root/net/ftp/ftp_auth_cache.h
diff options
context:
space:
mode:
authorwtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-18 19:38:58 +0000
committerwtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-18 19:38:58 +0000
commit56c866a252b4a7dcb525b0b29bafc4de0168b7bb (patch)
tree3eb4f9f77dede3481a05e9e2d730dbace83d13fd /net/ftp/ftp_auth_cache.h
parent1a041bb64d411c1902e005cdc1a904607016f707 (diff)
downloadchromium_src-56c866a252b4a7dcb525b0b29bafc4de0168b7bb.zip
chromium_src-56c866a252b4a7dcb525b0b29bafc4de0168b7bb.tar.gz
chromium_src-56c866a252b4a7dcb525b0b29bafc4de0168b7bb.tar.bz2
Add a simple cache of certificates for SSL client authentication.
It is based on FtpAuthCache and will be used in similar ways. The the only difference is that the authentication data is a certificate rather than username and password. R=eroman BUG=http://crbug.com/318 TEST=new unit tests. Review URL: http://codereview.chromium.org/132004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18735 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/ftp/ftp_auth_cache.h')
-rw-r--r--net/ftp/ftp_auth_cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ftp/ftp_auth_cache.h b/net/ftp/ftp_auth_cache.h
index 1bde911..1286511 100644
--- a/net/ftp/ftp_auth_cache.h
+++ b/net/ftp/ftp_auth_cache.h
@@ -42,7 +42,7 @@ class FtpAuthCache {
private:
typedef std::string AuthCacheKey;
typedef scoped_refptr<AuthData> AuthCacheValue;
- typedef std::map<AuthCacheKey,AuthCacheValue> AuthCacheMap;
+ typedef std::map<AuthCacheKey, AuthCacheValue> AuthCacheMap;
// Get the key in hash table |cache_| where entries for ftp server |origin|
// should be saved.