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

Unified Diff: sync/engine/update_applicator.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/syncer_util_unittest.cc ('k') | sync/engine/update_applicator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/engine/update_applicator.h
diff --git a/sync/engine/update_applicator.h b/sync/engine/update_applicator.h
index 1fc8bb802bdf8c3e1a1959f99052522e8676f2f6..4cb885afee6eb49bd7ed32c22e9b1749e3ed5b04 100644
--- a/sync/engine/update_applicator.h
+++ b/sync/engine/update_applicator.h
@@ -11,13 +11,15 @@
#ifndef SYNC_ENGINE_UPDATE_APPLICATOR_H_
#define SYNC_ENGINE_UPDATE_APPLICATOR_H_
+#include <stdint.h>
+
#include <set>
#include <vector>
-#include "base/basictypes.h"
+#include "base/macros.h"
#include "sync/internal_api/public/engine/model_safe_worker.h"
-#include "sync/syncable/syncable_id.h"
#include "sync/sessions/status_controller.h"
+#include "sync/syncable/syncable_id.h"
namespace syncer {
@@ -40,7 +42,7 @@ class UpdateApplicator {
// Attempt to apply the specified updates.
void AttemptApplications(syncable::WriteTransaction* trans,
- const std::vector<int64>& handles);
+ const std::vector<int64_t>& handles);
int updates_applied() {
return updates_applied_;
« no previous file with comments | « sync/engine/syncer_util_unittest.cc ('k') | sync/engine/update_applicator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698