| Index: net/ftp/ftp_directory_listing_parser_vms.cc
|
| diff --git a/net/ftp/ftp_directory_listing_parser_vms.cc b/net/ftp/ftp_directory_listing_parser_vms.cc
|
| index 287454860494d1983d06a8a93776bfe02dd2886d..e05f2c73a93f144f58b3bb4a1484e23fb33827d8 100644
|
| --- a/net/ftp/ftp_directory_listing_parser_vms.cc
|
| +++ b/net/ftp/ftp_directory_listing_parser_vms.cc
|
| @@ -55,7 +55,7 @@ bool ParseVmsFilename(const base::string16& raw_filename,
|
| return true;
|
| }
|
|
|
| -bool ParseVmsFilesize(const base::string16& input, int64* size) {
|
| +bool ParseVmsFilesize(const base::string16& input, int64_t* size) {
|
| if (base::ContainsOnlyChars(input, base::ASCIIToUTF16("*"))) {
|
| // Response consisting of asterisks means unknown size.
|
| *size = -1;
|
| @@ -80,7 +80,7 @@ bool ParseVmsFilesize(const base::string16& input, int64* size) {
|
| if (parts.size() != 2)
|
| return false;
|
|
|
| - int64 blocks_used, blocks_allocated;
|
| + int64_t blocks_used, blocks_allocated;
|
| if (!base::StringToInt64(parts[0], &blocks_used))
|
| return false;
|
| if (!base::StringToInt64(parts[1], &blocks_allocated))
|
|
|