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

Unified Diff: components/drive/sync/entry_update_performer.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/sync/entry_update_performer.cc
diff --git a/components/drive/sync/entry_update_performer.cc b/components/drive/sync/entry_update_performer.cc
index 54186231b743e604b315212d51a6a03ade191deb..3367ebf084e7cc32e40e8a4ea7c6d2d767b78d44 100644
--- a/components/drive/sync/entry_update_performer.cc
+++ b/components/drive/sync/entry_update_performer.cc
@@ -4,6 +4,8 @@
#include "components/drive/sync/entry_update_performer.h"
+#include <stdint.h>
+
#include <set>
#include "base/callback_helpers.h"
@@ -30,7 +32,7 @@ struct EntryUpdatePerformer::LocalState {
ResourceEntry parent_entry;
base::FilePath drive_file_path;
base::FilePath cache_file_path;
- int64 cache_file_size;
+ int64_t cache_file_size;
bool should_content_update;
};
« no previous file with comments | « components/drive/sync/entry_update_performer.h ('k') | components/drive/sync/entry_update_performer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698