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

Unified Diff: components/sync_driver/glue/sync_backend_host_impl.cc

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (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: components/sync_driver/glue/sync_backend_host_impl.cc
diff --git a/components/sync_driver/glue/sync_backend_host_impl.cc b/components/sync_driver/glue/sync_backend_host_impl.cc
index eeb4712751650a8db4121e2d70deb13ce40f1be9..a5e90ff213ca581b5744430b72b26a54398297cd 100644
--- a/components/sync_driver/glue/sync_backend_host_impl.cc
+++ b/components/sync_driver/glue/sync_backend_host_impl.cc
@@ -116,7 +116,7 @@ void SyncBackendHostImpl::Initialize(
if (cl->HasSwitch(switches::kSyncEnableClearDataOnPassphraseEncryption))
clear_data_option = syncer::PASSPHRASE_TRANSITION_CLEAR_DATA;
- std::map<syncer::ModelType, int64> invalidation_versions;
+ std::map<syncer::ModelType, int64_t> invalidation_versions;
sync_prefs_->GetInvalidationVersions(&invalidation_versions);
scoped_ptr<DoInitializeOptions> init_opts(new DoInitializeOptions(
@@ -828,7 +828,7 @@ void SyncBackendHostImpl::HandleDirectoryStatusCountersUpdatedOnFrontendLoop(
}
void SyncBackendHostImpl::UpdateInvalidationVersions(
- const std::map<syncer::ModelType, int64>& invalidation_versions) {
+ const std::map<syncer::ModelType, int64_t>& invalidation_versions) {
sync_prefs_->UpdateInvalidationVersions(invalidation_versions);
}
« no previous file with comments | « components/sync_driver/glue/sync_backend_host_impl.h ('k') | components/sync_driver/glue/sync_backend_host_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698