summaryrefslogtreecommitdiffstats
path: root/net/base/auth_cache.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/base/auth_cache.cc')
-rw-r--r--net/base/auth_cache.cc4
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