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

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

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
Index: chrome/browser/sync/abstract_profile_sync_service_test.h
diff --git a/chrome/browser/sync/abstract_profile_sync_service_test.h b/chrome/browser/sync/abstract_profile_sync_service_test.h
index 2b11b567e21c2467b9973e8fc506a78e3880733b..d6131b7738b26b3c28156796db339f61acf4c36c 100644
--- a/chrome/browser/sync/abstract_profile_sync_service_test.h
+++ b/chrome/browser/sync/abstract_profile_sync_service_test.h
@@ -5,6 +5,8 @@
#ifndef CHROME_BROWSER_SYNC_ABSTRACT_PROFILE_SYNC_SERVICE_TEST_H_
#define CHROME_BROWSER_SYNC_ABSTRACT_PROFILE_SYNC_SERVICE_TEST_H_
+#include <stdint.h>
+
#include <string>
#include "base/callback.h"
@@ -27,13 +29,14 @@ struct UserShare;
class ProfileSyncServiceTestHelper {
public:
static syncer::ImmutableChangeRecordList MakeSingletonChangeRecordList(
- int64 node_id, syncer::ChangeRecord::Action action);
+ int64_t node_id,
+ syncer::ChangeRecord::Action action);
// Deletions must provide an EntitySpecifics for the deleted data.
static syncer::ImmutableChangeRecordList
- MakeSingletonDeletionChangeRecordList(
- int64 node_id,
- const sync_pb::EntitySpecifics& specifics);
+ MakeSingletonDeletionChangeRecordList(
+ int64_t node_id,
+ const sync_pb::EntitySpecifics& specifics);
};
class AbstractProfileSyncServiceTest : public testing::Test {

Powered by Google App Engine
This is Rietveld 408576698