Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1194)

Unified Diff: components/drive/file_system/get_file_for_saving_operation_unittest.cc

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}
« no previous file with comments | « components/drive/file_system/get_file_for_saving_operation.h ('k') | components/drive/file_system/move_operation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698