summaryrefslogtreecommitdiffstats
path: root/sync/engine/directory_update_handler.cc
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2015-12-21 19:14:10 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-22 03:15:12 +0000
commit4856ced07dfda549a142df3a5fa28cbb73bf1865 (patch)
treea81aceedc8ee5507d9f22fb4f163d847bfae6d28 /sync/engine/directory_update_handler.cc
parent5af9dfc5f6ed2163b13d8c20d679bdb44c783769 (diff)
downloadchromium_src-4856ced07dfda549a142df3a5fa28cbb73bf1865.zip
chromium_src-4856ced07dfda549a142df3a5fa28cbb73bf1865.tar.gz
chromium_src-4856ced07dfda549a142df3a5fa28cbb73bf1865.tar.bz2
Switch to standard integer types in sync/.
BUG=138542 TBR=zea@chromium.org Review URL: https://codereview.chromium.org/1545553003 Cr-Commit-Position: refs/heads/master@{#366533}
Diffstat (limited to 'sync/engine/directory_update_handler.cc')
-rw-r--r--sync/engine/directory_update_handler.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/sync/engine/directory_update_handler.cc b/sync/engine/directory_update_handler.cc
index 60b08c5..87e5e10 100644
--- a/sync/engine/directory_update_handler.cc
+++ b/sync/engine/directory_update_handler.cc
@@ -4,6 +4,8 @@
#include "sync/engine/directory_update_handler.h"
+#include <stdint.h>
+
#include <vector>
#include "sync/engine/conflict_resolver.h"
@@ -146,7 +148,7 @@ SyncerError DirectoryUpdateHandler::ApplyUpdatesImpl(
sessions::StatusController* status) {
syncable::WriteTransaction trans(FROM_HERE, syncable::SYNCER, dir_);
- std::vector<int64> handles;
+ std::vector<int64_t> handles;
dir_->GetUnappliedUpdateMetaHandles(
&trans,
FullModelTypeSet(type_),