| Index: sync/internal_api/public/base/invalidation_interface.h
|
| diff --git a/sync/internal_api/public/base/invalidation_interface.h b/sync/internal_api/public/base/invalidation_interface.h
|
| index 2efddd657a49d550a18568915d80b8b9eef5c460..97267975409fd5fa813cc3ee9eda757626232e32 100644
|
| --- a/sync/internal_api/public/base/invalidation_interface.h
|
| +++ b/sync/internal_api/public/base/invalidation_interface.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef SYNC_INTERNAL_API_PUBLIC_BASE_INVALIDATION_INTERFACE_H_
|
| #define SYNC_INTERNAL_API_PUBLIC_BASE_INVALIDATION_INTERFACE_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| -#include "base/basictypes.h"
|
| #include "sync/base/sync_export.h"
|
|
|
| namespace syncer {
|
| @@ -36,7 +37,7 @@ class SYNC_EXPORT InvalidationInterface {
|
| //
|
| // It is preferable to use the LessThan() function, which handles unknown
|
| // versions properly, rather than this function.
|
| - virtual int64 GetVersion() const = 0;
|
| + virtual int64_t GetVersion() const = 0;
|
|
|
| // This function will be called when the invalidation has been handled
|
| // successfully.
|
|
|