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

Unified Diff: sync/engine/non_blocking_type_commit_contribution.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/engine/non_blocking_type_commit_contribution.h ('k') | sync/engine/process_updates_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/engine/non_blocking_type_commit_contribution.cc
diff --git a/sync/engine/non_blocking_type_commit_contribution.cc b/sync/engine/non_blocking_type_commit_contribution.cc
index 55b81e27a9d06f0f475e2d7af8275b02f6f1036b..5216ed08add0e47d47558407b0101052a77da773 100644
--- a/sync/engine/non_blocking_type_commit_contribution.cc
+++ b/sync/engine/non_blocking_type_commit_contribution.cc
@@ -4,6 +4,9 @@
#include "sync/engine/non_blocking_type_commit_contribution.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include <algorithm>
#include "base/values.h"
@@ -16,7 +19,7 @@ namespace syncer_v2 {
NonBlockingTypeCommitContribution::NonBlockingTypeCommitContribution(
const sync_pb::DataTypeContext& context,
const google::protobuf::RepeatedPtrField<sync_pb::SyncEntity>& entities,
- const std::vector<int64>& sequence_numbers,
+ const std::vector<int64_t>& sequence_numbers,
ModelTypeWorker* worker)
: worker_(worker),
context_(context),
« no previous file with comments | « sync/engine/non_blocking_type_commit_contribution.h ('k') | sync/engine/process_updates_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698