| Index: sync/test/fake_server/bookmark_entity_builder.cc
|
| diff --git a/sync/test/fake_server/bookmark_entity_builder.cc b/sync/test/fake_server/bookmark_entity_builder.cc
|
| index c73fb08bb4d3b25d87e92a939fab459f6017b640..20a5b032aef8873b0c5503d4cd29b8175588b641 100644
|
| --- a/sync/test/fake_server/bookmark_entity_builder.cc
|
| +++ b/sync/test/fake_server/bookmark_entity_builder.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "sync/test/fake_server/bookmark_entity_builder.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| #include "base/guid.h"
|
| @@ -24,10 +26,10 @@ using syncer::syncable::GenerateSyncableBookmarkHash;
|
|
|
| // A version must be passed when creating a FakeServerEntity, but this value
|
| // is overrideen immediately when saving the entity in FakeServer.
|
| -const int64 kUnusedVersion = 0L;
|
| +const int64_t kUnusedVersion = 0L;
|
|
|
| // Default time (creation and last modified) used when creating entities.
|
| -const int64 kDefaultTime = 1234L;
|
| +const int64_t kDefaultTime = 1234L;
|
|
|
| namespace fake_server {
|
|
|
|
|