Index: trunk/src/net/ftp/ftp_network_session.h |
=================================================================== |
--- trunk/src/net/ftp/ftp_network_session.h (revision 188924) |
+++ trunk/src/net/ftp/ftp_network_session.h (working copy) |
@@ -7,6 +7,7 @@ |
#include "base/memory/ref_counted.h" |
#include "net/base/net_export.h" |
+#include "net/ftp/ftp_auth_cache.h" |
namespace net { |
@@ -19,6 +20,7 @@ |
explicit FtpNetworkSession(HostResolver* host_resolver); |
HostResolver* host_resolver() { return host_resolver_; } |
+ FtpAuthCache* auth_cache() { return &auth_cache_; } |
private: |
friend class base::RefCounted<FtpNetworkSession>; |
@@ -26,6 +28,7 @@ |
virtual ~FtpNetworkSession(); |
HostResolver* const host_resolver_; |
+ FtpAuthCache auth_cache_; |
}; |
} // namespace net |