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

Unified Diff: sync/syncable/write_transaction_info.cc

Issue 1545553003: Switch to standard integer types in sync/. (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
« no previous file with comments | « sync/syncable/write_transaction_info.h ('k') | sync/test/callback_counter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/syncable/write_transaction_info.cc
diff --git a/sync/syncable/write_transaction_info.cc b/sync/syncable/write_transaction_info.cc
index a8a23271db583bc9772f3f9b923d12eeda51a9c8..6a2df9fab5336c8e00d9d73c6c97296cf5ff985b 100644
--- a/sync/syncable/write_transaction_info.cc
+++ b/sync/syncable/write_transaction_info.cc
@@ -4,13 +4,16 @@
#include "sync/syncable/write_transaction_info.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include "base/strings/string_number_conversions.h"
namespace syncer {
namespace syncable {
WriteTransactionInfo::WriteTransactionInfo(
- int64 id,
+ int64_t id,
tracked_objects::Location location,
WriterTag writer,
ImmutableEntryKernelMutationMap mutations)
« no previous file with comments | « sync/syncable/write_transaction_info.h ('k') | sync/test/callback_counter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698