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

Unified Diff: components/sync_driver/device_info_sync_service.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/device_info_sync_service.cc
diff --git a/components/sync_driver/device_info_sync_service.cc b/components/sync_driver/device_info_sync_service.cc
index 65b9418b24112995d5df56307042a029cdf5ad16..8005e97b6ac5ec48e25f83bba4ab4e7f65a467a7 100644
--- a/components/sync_driver/device_info_sync_service.cc
+++ b/components/sync_driver/device_info_sync_service.cc
@@ -4,6 +4,8 @@
#include "components/sync_driver/device_info_sync_service.h"
+#include <stddef.h>
+
#include "base/metrics/histogram_macros.h"
#include "base/strings/stringprintf.h"
#include "components/sync_driver/local_device_info_provider.h"
@@ -108,7 +110,7 @@ SyncMergeResult DeviceInfoSyncService::MergeDataAndStartSyncing(
// Retrieve local device backup timestamp value from the sync data.
bool has_synced_backup_time =
iter->GetSpecifics().device_info().has_backup_timestamp();
- int64 synced_backup_time =
+ int64_t synced_backup_time =
has_synced_backup_time
? iter->GetSpecifics().device_info().backup_timestamp()
: -1;
« no previous file with comments | « components/sync_driver/device_info_sync_service.h ('k') | components/sync_driver/device_info_sync_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698