OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_URL_REQUEST_FTP_PROTOCOL_HANDLER_H_ | 5 #ifndef NET_URL_REQUEST_FTP_PROTOCOL_HANDLER_H_ |
6 #define NET_URL_REQUEST_FTP_PROTOCOL_HANDLER_H_ | 6 #define NET_URL_REQUEST_FTP_PROTOCOL_HANDLER_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "net/base/net_export.h" |
12 #include "net/url_request/url_request_job_factory.h" | 13 #include "net/url_request/url_request_job_factory.h" |
13 | 14 |
14 namespace net { | 15 namespace net { |
15 | 16 |
16 class FtpAuthCache; | 17 class FtpAuthCache; |
17 class FtpTransactionFactory; | 18 class FtpTransactionFactory; |
18 class NetworkDelegate; | 19 class NetworkDelegate; |
19 class URLRequestJob; | 20 class URLRequestJob; |
20 | 21 |
21 // Implements a ProtocolHandler for FTP. | 22 // Implements a ProtocolHandler for FTP. |
(...skipping 11 matching lines...) Expand all Loading... |
33 | 34 |
34 FtpTransactionFactory* ftp_transaction_factory_; | 35 FtpTransactionFactory* ftp_transaction_factory_; |
35 std::unique_ptr<FtpAuthCache> ftp_auth_cache_; | 36 std::unique_ptr<FtpAuthCache> ftp_auth_cache_; |
36 | 37 |
37 DISALLOW_COPY_AND_ASSIGN(FtpProtocolHandler); | 38 DISALLOW_COPY_AND_ASSIGN(FtpProtocolHandler); |
38 }; | 39 }; |
39 | 40 |
40 } // namespace net | 41 } // namespace net |
41 | 42 |
42 #endif // NET_URL_REQUEST_FTP_PROTOCOL_HANDLER_H_ | 43 #endif // NET_URL_REQUEST_FTP_PROTOCOL_HANDLER_H_ |
OLD | NEW |