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

Unified Diff: components/sync_driver/device_info_sync_service_unittest.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_unittest.cc
diff --git a/components/sync_driver/device_info_sync_service_unittest.cc b/components/sync_driver/device_info_sync_service_unittest.cc
index 559ca2ae3ba6370dce7e678d7a6b474e112838e0..9592b71cded9607730f7eb7fbbcf75ccce8a73ce 100644
--- a/components/sync_driver/device_info_sync_service_unittest.cc
+++ b/components/sync_driver/device_info_sync_service_unittest.cc
@@ -4,6 +4,9 @@
#include "components/sync_driver/device_info_sync_service.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include <string>
#include "components/sync_driver/local_device_info_provider_mock.h"
@@ -110,7 +113,7 @@ class DeviceInfoSyncServiceTest : public testing::Test,
SyncData CreateRemoteData(const std::string& client_id,
const std::string& client_name,
- int64 backup_timestamp = 0) {
+ int64_t backup_timestamp = 0) {
sync_pb::EntitySpecifics entity;
sync_pb::DeviceInfoSpecifics& specifics = *entity.mutable_device_info();
« no previous file with comments | « components/sync_driver/device_info_sync_service.cc ('k') | components/sync_driver/fake_generic_change_processor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698