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

Unified Diff: sync/internal_api/sync_backup_manager.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/internal_api/shared_model_type_processor_unittest.cc ('k') | sync/internal_api/sync_backup_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/internal_api/sync_backup_manager.h
diff --git a/sync/internal_api/sync_backup_manager.h b/sync/internal_api/sync_backup_manager.h
index 0e0227e0b03e691146912d44a6db6b606d5ff5fe..e7e50fab3be4fe323674ad5a0ac18f2c7bd0c629 100644
--- a/sync/internal_api/sync_backup_manager.h
+++ b/sync/internal_api/sync_backup_manager.h
@@ -5,8 +5,11 @@
#ifndef SYNC_INTERNAL_API_SYNC_BACKUP_MANAGER_H_
#define SYNC_INTERNAL_API_SYNC_BACKUP_MANAGER_H_
+#include <stdint.h>
+
#include <set>
+#include "base/macros.h"
#include "sync/internal_api/sync_rollback_manager_base.h"
#include "url/gurl.h"
@@ -52,7 +55,7 @@ class SYNC_EXPORT SyncBackupManager : public SyncRollbackManagerBase {
void HideSyncPreference(ModelType pref_type);
// Handles of unsynced entries caused by local model changes.
- std::set<int64> unsynced_;
+ std::set<int64_t> unsynced_;
// True if NormalizeEntries() is being called.
bool in_normalization_;
« no previous file with comments | « sync/internal_api/shared_model_type_processor_unittest.cc ('k') | sync/internal_api/sync_backup_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698