summaryrefslogtreecommitdiffstats
path: root/net/http/http_auth_cache.h
diff options
context:
space:
mode:
authorrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-20 19:09:50 +0000
committerrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-20 19:09:50 +0000
commit9bd3095ca43167be01c25cd79c2e7c21529ed153 (patch)
tree23e3e135d5bdd756eb14ca5e86b9b3d4edb9198d /net/http/http_auth_cache.h
parent1b0f1e169e3d747080449c6d54c1965b597ff5f9 (diff)
downloadchromium_src-9bd3095ca43167be01c25cd79c2e7c21529ed153.zip
chromium_src-9bd3095ca43167be01c25cd79c2e7c21529ed153.tar.gz
chromium_src-9bd3095ca43167be01c25cd79c2e7c21529ed153.tar.bz2
net: Add NET_API to the auth code.
BUG=76997 TEST=NONE Review URL: http://codereview.chromium.org/7016043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86128 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_auth_cache.h')
-rw-r--r--net/http/http_auth_cache.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/http/http_auth_cache.h b/net/http/http_auth_cache.h
index e8f7f16..e7eb305 100644
--- a/net/http/http_auth_cache.h
+++ b/net/http/http_auth_cache.h
@@ -13,6 +13,7 @@
#include "base/memory/ref_counted.h"
#include "base/string16.h"
#include "googleurl/src/gurl.h"
+#include "net/base/net_api.h"
#include "net/http/http_auth.h"
namespace net {
@@ -25,7 +26,7 @@ namespace net {
// - the last auth handler used (contains realm and authentication scheme)
// - the list of paths which used this realm
// Entries can be looked up by either (origin, realm, scheme) or (origin, path).
-class HttpAuthCache {
+class NET_TEST HttpAuthCache {
public:
class Entry;
@@ -108,7 +109,7 @@ class HttpAuthCache {
};
// An authentication realm entry.
-class HttpAuthCache::Entry {
+class NET_TEST HttpAuthCache::Entry {
public:
~Entry();