Index: net/ftp/ftp_network_layer.h |
diff --git a/net/ftp/ftp_network_layer.h b/net/ftp/ftp_network_layer.h |
deleted file mode 100644 |
index f174df9fa477145d2267ff47c09385ab2604a12e..0000000000000000000000000000000000000000 |
--- a/net/ftp/ftp_network_layer.h |
+++ /dev/null |
@@ -1,38 +0,0 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef NET_FTP_FTP_NETWORK_LAYER_H_ |
-#define NET_FTP_FTP_NETWORK_LAYER_H_ |
- |
-#include "base/basictypes.h" |
-#include "base/compiler_specific.h" |
-#include "base/memory/ref_counted.h" |
-#include "net/base/net_export.h" |
-#include "net/ftp/ftp_transaction_factory.h" |
- |
-namespace net { |
- |
-class FtpNetworkSession; |
-class HostResolver; |
- |
-class NET_EXPORT FtpNetworkLayer : public FtpTransactionFactory { |
- public: |
- explicit FtpNetworkLayer(HostResolver* host_resolver); |
- ~FtpNetworkLayer() override; |
- |
- static FtpTransactionFactory* CreateFactory(HostResolver* host_resolver); |
- |
- // FtpTransactionFactory methods: |
- FtpTransaction* CreateTransaction() override; |
- void Suspend(bool suspend) override; |
- |
- private: |
- scoped_refptr<FtpNetworkSession> session_; |
- bool suspended_; |
- DISALLOW_COPY_AND_ASSIGN(FtpNetworkLayer); |
-}; |
- |
-} // namespace net |
- |
-#endif // NET_FTP_FTP_NETWORK_LAYER_H_ |