| Index: sync/syncable/entry_kernel.cc
|
| diff --git a/sync/syncable/entry_kernel.cc b/sync/syncable/entry_kernel.cc
|
| index ec7575bdc073a917023f96c68df24ff75eae0ac7..e9d21e51f6b0cf84e4a0984bb3d76907b40cb42b 100644
|
| --- a/sync/syncable/entry_kernel.cc
|
| +++ b/sync/syncable/entry_kernel.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "sync/syncable/entry_kernel.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/json/string_escape.h"
|
| #include "base/strings/string_number_conversions.h"
|
| #include "sync/protocol/proto_value_conversions.h"
|
| @@ -115,7 +117,7 @@ void SetEncryptableProtoValues(
|
|
|
| // Helper functions for SetFieldValues().
|
|
|
| -base::StringValue* Int64ToValue(int64 i) {
|
| +base::StringValue* Int64ToValue(int64_t i) {
|
| return new base::StringValue(base::Int64ToString(i));
|
| }
|
|
|
|
|