| Index: net/ftp/ftp_response_info.h
|
| diff --git a/net/ftp/ftp_response_info.h b/net/ftp/ftp_response_info.h
|
| index 8bae8c1993108806be5737e36e5588f539b8d53b..70d365367d8783cf7636b3f38a0b4ef30c5bbad7 100644
|
| --- a/net/ftp/ftp_response_info.h
|
| +++ b/net/ftp/ftp_response_info.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef NET_FTP_FTP_RESPONSE_INFO_H_
|
| #define NET_FTP_FTP_RESPONSE_INFO_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/time/time.h"
|
| #include "net/base/host_port_pair.h"
|
|
|
| @@ -29,7 +31,7 @@ class FtpResponseInfo {
|
|
|
| // Expected content size, in bytes, as reported by SIZE command. Only valid
|
| // for file downloads. -1 means unknown size.
|
| - int64 expected_content_size;
|
| + int64_t expected_content_size;
|
|
|
| // True if the response data is of a directory listing.
|
| bool is_directory_listing;
|
|
|