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

Unified Diff: sync/internal_api/public/delete_journal.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
Index: sync/internal_api/public/delete_journal.h
diff --git a/sync/internal_api/public/delete_journal.h b/sync/internal_api/public/delete_journal.h
index f6d43ca903e37f941057d88f533e4cd77be7050c..c6aad55331b94ba12cfd95d52a1fc979f81e0c95 100644
--- a/sync/internal_api/public/delete_journal.h
+++ b/sync/internal_api/public/delete_journal.h
@@ -5,6 +5,8 @@
#ifndef SYNC_INTERNAL_API_PUBLIC_DELETE_JOURNAL_H_
#define SYNC_INTERNAL_API_PUBLIC_DELETE_JOURNAL_H_
+#include <stdint.h>
+
#include <set>
#include <vector>
@@ -17,8 +19,8 @@ namespace syncer {
class BaseTransaction;
struct BookmarkDeleteJournal {
- int64 id; // Metahandle of delete journal entry.
- int64 external_id; // Bookmark ID in the native model.
+ int64_t id; // Metahandle of delete journal entry.
+ int64_t external_id; // Bookmark ID in the native model.
bool is_folder;
sync_pb::EntitySpecifics specifics;
};
@@ -38,7 +40,7 @@ class SYNC_EXPORT DeleteJournal {
// Purge delete journals of given IDs from |trans|'s directory.
static void PurgeDeleteJournals(BaseTransaction* trans,
- const std::set<int64>& ids);
+ const std::set<int64_t>& ids);
};
} // namespace syncer
« no previous file with comments | « sync/internal_api/public/data_type_association_stats.h ('k') | sync/internal_api/public/engine/passive_model_worker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698