summaryrefslogtreecommitdiffstats
path: root/net/ftp/ftp_network_session.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/ftp/ftp_network_session.h')
-rw-r--r--net/ftp/ftp_network_session.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ftp/ftp_network_session.h b/net/ftp/ftp_network_session.h
index 83a1cc7..13ab216 100644
--- a/net/ftp/ftp_network_session.h
+++ b/net/ftp/ftp_network_session.h
@@ -6,7 +6,7 @@
#define NET_FTP_FTP_NETWORK_SESSION_H_
#include "base/ref_counted.h"
-#include "net/base/auth_cache.h"
+#include "net/ftp/ftp_auth_cache.h"
namespace net {
@@ -15,10 +15,10 @@ class FtpNetworkSession : public base::RefCounted<FtpNetworkSession> {
public:
FtpNetworkSession() {}
- AuthCache* auth_cache() { return &auth_cache_; }
+ FtpAuthCache* auth_cache() { return &auth_cache_; }
private:
- AuthCache auth_cache_;
+ FtpAuthCache auth_cache_;
};
} // namespace net