| Index: sync/internal_api/public/engine/polling_constants.h
|
| diff --git a/sync/internal_api/public/engine/polling_constants.h b/sync/internal_api/public/engine/polling_constants.h
|
| index 4e93f1748ad6fe4974fb458cea2423f3d6dcfd0c..8ef1fbcc49a73571d73dddf9aae00307f975a9f8 100644
|
| --- a/sync/internal_api/public/engine/polling_constants.h
|
| +++ b/sync/internal_api/public/engine/polling_constants.h
|
| @@ -7,13 +7,15 @@
|
| #ifndef SYNC_INTERNAL_API_PUBLIC_ENGINE_POLLING_CONSTANTS_H_
|
| #define SYNC_INTERNAL_API_PUBLIC_ENGINE_POLLING_CONSTANTS_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "sync/base/sync_export.h"
|
|
|
| namespace syncer {
|
|
|
| -SYNC_EXPORT extern const int64 kDefaultShortPollIntervalSeconds;
|
| -SYNC_EXPORT extern const int64 kDefaultLongPollIntervalSeconds;
|
| -SYNC_EXPORT extern const int64 kMaxBackoffSeconds;
|
| +SYNC_EXPORT extern const int64_t kDefaultShortPollIntervalSeconds;
|
| +SYNC_EXPORT extern const int64_t kDefaultLongPollIntervalSeconds;
|
| +SYNC_EXPORT extern const int64_t kMaxBackoffSeconds;
|
| SYNC_EXPORT extern const int kBackoffRandomizationFactor;
|
| SYNC_EXPORT extern const int kInitialBackoffRetrySeconds;
|
| SYNC_EXPORT extern const int kInitialBackoffShortRetrySeconds;
|
|
|