| Index: sync/internal_api/public/change_record_unittest.cc
|
| diff --git a/sync/internal_api/public/change_record_unittest.cc b/sync/internal_api/public/change_record_unittest.cc
|
| index b68831a3f596e577eec5278c59e7ee43ea3935b3..a6b7a008c5ee5bc0b53759580b94c58db0162f5c 100644
|
| --- a/sync/internal_api/public/change_record_unittest.cc
|
| +++ b/sync/internal_api/public/change_record_unittest.cc
|
| @@ -4,6 +4,9 @@
|
|
|
| #include "sync/internal_api/public/change_record.h"
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| #include "base/memory/scoped_ptr.h"
|
| @@ -103,7 +106,7 @@ TEST_F(ChangeRecordTest, ChangeRecordToValue) {
|
| sync_pb::EntitySpecifics new_specifics;
|
| old_specifics.mutable_extension()->set_id("new");
|
|
|
| - const int64 kTestId = 5;
|
| + const int64_t kTestId = 5;
|
|
|
| // Add
|
| {
|
|
|