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

Unified Diff: components/sync_driver/change_processor.h

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
« no previous file with comments | « components/sync_driver/backup_rollback_controller.h ('k') | components/sync_driver/change_processor_mock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync_driver/change_processor.h
diff --git a/components/sync_driver/change_processor.h b/components/sync_driver/change_processor.h
index 30762be63d08db12c63e20dd9b9046ba19308cf3..e441548cbb0be43e04622123dcdf7c100370a766 100644
--- a/components/sync_driver/change_processor.h
+++ b/components/sync_driver/change_processor.h
@@ -5,6 +5,9 @@
#ifndef COMPONENTS_SYNC_DRIVER_CHANGE_PROCESSOR_H_
#define COMPONENTS_SYNC_DRIVER_CHANGE_PROCESSOR_H_
+#include <stdint.h>
+
+#include "base/macros.h"
#include "components/sync_driver/data_type_error_handler.h"
#include "sync/internal_api/public/base_transaction.h"
#include "sync/internal_api/public/change_record.h"
@@ -36,7 +39,7 @@ class ChangeProcessor {
// applied to the frontend model.
virtual void ApplyChangesFromSyncModel(
const syncer::BaseTransaction* trans,
- int64 model_version,
+ int64_t model_version,
const syncer::ImmutableChangeRecordList& changes) = 0;
// The changes found in ApplyChangesFromSyncModel may be too slow to be
« no previous file with comments | « components/sync_driver/backup_rollback_controller.h ('k') | components/sync_driver/change_processor_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698