| Index: chrome/browser/sync/test/integration/retry_verifier.h
|
| diff --git a/chrome/browser/sync/test/integration/retry_verifier.h b/chrome/browser/sync/test/integration/retry_verifier.h
|
| index bf7003fdbcabf8133500a00bc1c2d34671d5f5b4..e5ad0865168883204a48297eb8d3d8a9e834f711 100644
|
| --- a/chrome/browser/sync/test/integration/retry_verifier.h
|
| +++ b/chrome/browser/sync/test/integration/retry_verifier.h
|
| @@ -5,6 +5,9 @@
|
| #ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_RETRY_VERIFIER_H_
|
| #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_RETRY_VERIFIER_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "base/time/time.h"
|
|
|
| namespace syncer {
|
| @@ -17,8 +20,8 @@ class SyncSessionSnapshot;
|
| // place somewhere in this range. The algorithm that calculates the retry wait
|
| // time uses rand functions.
|
| struct DelayInfo {
|
| - int64 min_delay;
|
| - int64 max_delay;
|
| + int64_t min_delay;
|
| + int64_t max_delay;
|
| };
|
|
|
| // Class to verify retries take place using the exponential backoff algorithm.
|
|
|