| 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 {
|
|
|