| Index: net/ftp/ftp_network_layer.cc
|
| ===================================================================
|
| --- net/ftp/ftp_network_layer.cc (revision 15612)
|
| +++ net/ftp/ftp_network_layer.cc (working copy)
|
| @@ -18,6 +18,11 @@
|
| FtpNetworkLayer::~FtpNetworkLayer() {
|
| }
|
|
|
| +// static
|
| +FtpTransactionFactory* FtpNetworkLayer::CreateFactory() {
|
| + return new FtpNetworkLayer();
|
| +}
|
| +
|
| FtpTransaction* FtpNetworkLayer::CreateTransaction() {
|
| if (suspended_)
|
| return NULL;
|
| @@ -26,10 +31,6 @@
|
| session_, ClientSocketFactory::GetDefaultFactory());
|
| }
|
|
|
| -FtpAuthCache* FtpNetworkLayer::GetAuthCache() {
|
| - return session_->auth_cache();
|
| -}
|
| -
|
| void FtpNetworkLayer::Suspend(bool suspend) {
|
| suspended_ = suspend;
|
|
|
|
|