| Index: components/drive/file_system/get_file_for_saving_operation_unittest.cc
|
| diff --git a/components/drive/file_system/get_file_for_saving_operation_unittest.cc b/components/drive/file_system/get_file_for_saving_operation_unittest.cc
|
| index 984d0b692d979b445bda1a386a7781e82271e460..7cfb731c50a6b293c75ca53e1cfa5d3471ff2909 100644
|
| --- a/components/drive/file_system/get_file_for_saving_operation_unittest.cc
|
| +++ b/components/drive/file_system/get_file_for_saving_operation_unittest.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "components/drive/file_system/get_file_for_saving_operation.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/callback.h"
|
| #include "base/files/file_path.h"
|
| #include "base/files/file_util.h"
|
| @@ -129,7 +131,7 @@ TEST_F(GetFileForSavingOperationTest, GetFileForSaving_NotExist) {
|
| // Checks that the file is created and retrieved.
|
| EXPECT_EQ(FILE_ERROR_OK, error);
|
| EXPECT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(drive_path, &src_entry));
|
| - int64 size = -1;
|
| + int64_t size = -1;
|
| EXPECT_TRUE(base::GetFileSize(local_path, &size));
|
| EXPECT_EQ(0, size);
|
| }
|
|
|