diff options
author | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-15 06:43:48 +0000 |
---|---|---|
committer | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-15 06:43:48 +0000 |
commit | 515838ce76cb8bec7f51f6143cac74f113e247ad (patch) | |
tree | 71b70d594974310b35d1c8f7843aeda5717c044b /net/ftp/ftp_transaction_factory.h | |
parent | 92352a66515fd9a01f538529356ad45870109f28 (diff) | |
download | chromium_src-515838ce76cb8bec7f51f6143cac74f113e247ad.zip chromium_src-515838ce76cb8bec7f51f6143cac74f113e247ad.tar.gz chromium_src-515838ce76cb8bec7f51f6143cac74f113e247ad.tar.bz2 |
post-winhttp cleanup: refactor net/base/auth_cache into net/ftp/ftp_auth_cache.
Also moves AuthCache::HttpKey() --> GetSignonRealmKey().
Review URL: http://codereview.chromium.org/18218
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8085 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/ftp/ftp_transaction_factory.h')
-rw-r--r-- | net/ftp/ftp_transaction_factory.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ftp/ftp_transaction_factory.h b/net/ftp/ftp_transaction_factory.h index 67af645..f4cc53a 100644 --- a/net/ftp/ftp_transaction_factory.h +++ b/net/ftp/ftp_transaction_factory.h @@ -7,7 +7,7 @@ namespace net { -class AuthCache; +class FtpAuthCache; class FtpTransaction; // An interface to a class that can create FtpTransaction objects. @@ -19,7 +19,7 @@ class FtpTransactionFactory { virtual FtpTransaction* CreateTransaction() = 0; // Returns the associated FTP auth cache if any (may be NULL). - virtual AuthCache* GetAuthCache() = 0; + virtual FtpAuthCache* GetAuthCache() = 0; // Suspends the creation of new transactions. If |suspend| is false, creation // of new transactions is resumed. |