summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/test/integration/retry_verifier.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/sync/test/integration/retry_verifier.h')
-rw-r--r--chrome/browser/sync/test/integration/retry_verifier.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/sync/test/integration/retry_verifier.h b/chrome/browser/sync/test/integration/retry_verifier.h
index bf7003f..e5ad086 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.