| Index: net/ftp/ftp_directory_listing_parser_unittest.h
|
| diff --git a/net/ftp/ftp_directory_listing_parser_unittest.h b/net/ftp/ftp_directory_listing_parser_unittest.h
|
| index 22c2cf907402ba759bc43acd2411d6379de0b83b..3cbe17ad2d607a05d923893ffe0de77c872a570c 100644
|
| --- a/net/ftp/ftp_directory_listing_parser_unittest.h
|
| +++ b/net/ftp/ftp_directory_listing_parser_unittest.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef NET_FTP_FTP_DIRECTORY_LISTING_PARSER_UNITTEST_H_
|
| #define NET_FTP_FTP_DIRECTORY_LISTING_PARSER_UNITTEST_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <vector>
|
|
|
| #include "base/strings/utf_string_conversions.h"
|
| @@ -19,7 +21,7 @@ class FtpDirectoryListingParserTest : public testing::Test {
|
| const char* input;
|
| FtpDirectoryListingEntry::Type type;
|
| const char* filename;
|
| - int64 size;
|
| + int64_t size;
|
| int year;
|
| int month;
|
| int day_of_month;
|
|
|