summaryrefslogtreecommitdiffstats
path: root/net/ftp
diff options
context:
space:
mode:
Diffstat (limited to 'net/ftp')
-rw-r--r--net/ftp/ftp_network_session.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/net/ftp/ftp_network_session.h b/net/ftp/ftp_network_session.h
index c9b3388..e92bb06 100644
--- a/net/ftp/ftp_network_session.h
+++ b/net/ftp/ftp_network_session.h
@@ -7,7 +7,6 @@
#include "base/memory/ref_counted.h"
#include "net/base/net_export.h"
-#include "net/ftp/ftp_auth_cache.h"
namespace net {
@@ -20,7 +19,6 @@ class NET_EXPORT_PRIVATE FtpNetworkSession
explicit FtpNetworkSession(HostResolver* host_resolver);
HostResolver* host_resolver() { return host_resolver_; }
- FtpAuthCache* auth_cache() { return &auth_cache_; }
private:
friend class base::RefCounted<FtpNetworkSession>;
@@ -28,7 +26,6 @@ class NET_EXPORT_PRIVATE FtpNetworkSession
virtual ~FtpNetworkSession();
HostResolver* const host_resolver_;
- FtpAuthCache auth_cache_;
};
} // namespace net