diff options
author | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-30 16:40:10 +0000 |
---|---|---|
committer | darin@google.com <darin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-30 16:40:10 +0000 |
commit | a9bb6f69b32018c245e05a79011114653fe8f5e0 (patch) | |
tree | c4fe6b5db0e508f860c82feb44245bf549d608ff /net/base/auth_cache.cc | |
parent | f23423a1245dffc2a368708fafd2867d2cf3e0f8 (diff) | |
download | chromium_src-a9bb6f69b32018c245e05a79011114653fe8f5e0.zip chromium_src-a9bb6f69b32018c245e05a79011114653fe8f5e0.tar.gz chromium_src-a9bb6f69b32018c245e05a79011114653fe8f5e0.tar.bz2 |
Move some more classes from net/base into the net:: namespace.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/auth_cache.cc')
-rw-r--r-- | net/base/auth_cache.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/base/auth_cache.cc b/net/base/auth_cache.cc index daa3afc..645d831 100644 --- a/net/base/auth_cache.cc +++ b/net/base/auth_cache.cc @@ -32,6 +32,8 @@ #include "base/string_util.h" #include "googleurl/src/gurl.h" +namespace net { + // Create an AuthCacheKey from url and auth_info. // // The cache key is made up of two components, separated by a slash /. @@ -67,3 +69,5 @@ AuthData* AuthCache::Lookup(const AuthCacheKey& key) { AuthCacheMap::iterator iter = cache_.find(key); return (iter == cache_.end()) ? NULL : iter->second; } + +} // namespace net |