Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(105)

Unified Diff: trunk/src/net/ftp/ftp_network_session.h

Issue 12605011: Revert 188912 "Removed static factories for data, ftp, file, and..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « trunk/src/content/shell/shell_url_request_context_getter.cc ('k') | trunk/src/net/proxy/proxy_script_fetcher_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698