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

Unified Diff: sync/syncable/syncable_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/syncable/syncable_unittest.cc ('k') | sync/syncable/syncable_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/syncable/syncable_util.h
diff --git a/sync/syncable/syncable_util.h b/sync/syncable/syncable_util.h
index 77925791b225b1a2a5a0d736f9fe4a0aadc16769..a5d80a9a8c0fce8fde4c27f1a6fb012388620454 100644
--- a/sync/syncable/syncable_util.h
+++ b/sync/syncable/syncable_util.h
@@ -5,10 +5,11 @@
#ifndef SYNC_SYNCABLE_SYNCABLE_UTIL_H_
#define SYNC_SYNCABLE_SYNCABLE_UTIL_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
-#include "base/basictypes.h"
#include "sync/base/sync_export.h"
#include "sync/internal_api/public/base/model_type.h"
@@ -38,7 +39,7 @@ bool SyncAssert(bool condition,
BaseTransaction* trans);
SYNC_EXPORT int GetUnsyncedEntries(BaseTransaction* trans,
- std::vector<int64>* handles);
+ std::vector<int64_t>* handles);
// Generates a fixed-length tag for the given string under the given model_type.
SYNC_EXPORT std::string GenerateSyncableHash(ModelType model_type,
« no previous file with comments | « sync/syncable/syncable_unittest.cc ('k') | sync/syncable/syncable_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698