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

Unified Diff: sync/engine/commit_util.h

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/commit_processor.cc ('k') | sync/engine/commit_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/engine/commit_util.h
diff --git a/sync/engine/commit_util.h b/sync/engine/commit_util.h
index d6a1b49ba5843af5d5f3a2adf80a870044e0d312..6a42ebfb4510787d1feda944c4218bcb5a27c971 100644
--- a/sync/engine/commit_util.h
+++ b/sync/engine/commit_util.h
@@ -5,6 +5,8 @@
#ifndef SYNC_ENGINE_COMMIT_UTIL_H_
#define SYNC_ENGINE_COMMIT_UTIL_H_
+#include <stdint.h>
+
#include <set>
#include "sync/base/sync_export.h"
@@ -55,7 +57,7 @@ sync_pb::CommitResponse::ResponseType ProcessSingleCommitResponse(
syncable::BaseWriteTransaction* trans,
const sync_pb::CommitResponse_EntryResponse& server_entry,
const sync_pb::SyncEntity& commit_request_entry,
- int64 metahandle,
+ int64_t metahandle,
std::set<syncable::Id>* deleted_folders);
} // namespace commit_util
« no previous file with comments | « sync/engine/commit_processor.cc ('k') | sync/engine/commit_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698