| OLD | NEW |
| 1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this |
| 2 // source code is governed by a BSD-style license that can be found in the | 2 // source code is governed by a BSD-style license that can be found in the |
| 3 // LICENSE file. | 3 // LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_FTP_FTP_REQUEST_INFO_H_ | 5 #ifndef NET_FTP_FTP_REQUEST_INFO_H_ |
| 6 #define NET_FTP_FTP_REQUEST_INFO_H_ | 6 #define NET_FTP_FTP_REQUEST_INFO_H_ |
| 7 | 7 |
| 8 #include "googleurl/src/gurl.h" |
| 9 |
| 10 namespace net { |
| 11 |
| 8 class FtpRequestInfo { | 12 class FtpRequestInfo { |
| 9 public: | 13 public: |
| 10 // The requested URL. | 14 // The requested URL. |
| 11 GURL url; | 15 GURL url; |
| 12 | |
| 13 // Any upload data. | |
| 14 scoped_refptr<UploadData> upload_data; | |
| 15 | |
| 16 // Any load flags (see load_flags.h). | |
| 17 int load_flags; | |
| 18 }; | 16 }; |
| 19 | 17 |
| 18 } // namespace net |
| 19 |
| 20 #endif // NET_FTP_FTP_REQUEST_INFO_H_ | 20 #endif // NET_FTP_FTP_REQUEST_INFO_H_ |
| OLD | NEW |