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

Unified Diff: chrome/browser/sync/abstract_profile_sync_service_test.cc

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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 | « chrome/browser/sync/abstract_profile_sync_service_test.h ('k') | chrome/browser/sync/chrome_sync_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/abstract_profile_sync_service_test.cc
diff --git a/chrome/browser/sync/abstract_profile_sync_service_test.cc b/chrome/browser/sync/abstract_profile_sync_service_test.cc
index d9fa08a0bfe5f6a0a9c2ea3d80cdbd1c7ba9f295..3089b52b443c8d51b47355ff262892ed49d71821 100644
--- a/chrome/browser/sync/abstract_profile_sync_service_test.cc
+++ b/chrome/browser/sync/abstract_profile_sync_service_test.cc
@@ -20,8 +20,9 @@ using syncer::UserShare;
/* static */
syncer::ImmutableChangeRecordList
- ProfileSyncServiceTestHelper::MakeSingletonChangeRecordList(
- int64 node_id, syncer::ChangeRecord::Action action) {
+ProfileSyncServiceTestHelper::MakeSingletonChangeRecordList(
+ int64_t node_id,
+ syncer::ChangeRecord::Action action) {
syncer::ChangeRecord record;
record.action = action;
record.id = node_id;
@@ -31,8 +32,9 @@ syncer::ImmutableChangeRecordList
/* static */
syncer::ImmutableChangeRecordList
- ProfileSyncServiceTestHelper::MakeSingletonDeletionChangeRecordList(
- int64 node_id, const sync_pb::EntitySpecifics& specifics) {
+ProfileSyncServiceTestHelper::MakeSingletonDeletionChangeRecordList(
+ int64_t node_id,
+ const sync_pb::EntitySpecifics& specifics) {
syncer::ChangeRecord record;
record.action = syncer::ChangeRecord::ACTION_DELETE;
record.id = node_id;
« no previous file with comments | « chrome/browser/sync/abstract_profile_sync_service_test.h ('k') | chrome/browser/sync/chrome_sync_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698