summaryrefslogtreecommitdiffstats
path: root/google_apis/gaia
diff options
context:
space:
mode:
Diffstat (limited to 'google_apis/gaia')
-rw-r--r--google_apis/gaia/oauth2_token_service.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/google_apis/gaia/oauth2_token_service.cc b/google_apis/gaia/oauth2_token_service.cc
index e146ca9..def534a 100644
--- a/google_apis/gaia/oauth2_token_service.cc
+++ b/google_apis/gaia/oauth2_token_service.cc
@@ -313,7 +313,7 @@ void OAuth2TokenService::Fetcher::OnGetTokenFailure(
int64_t OAuth2TokenService::Fetcher::ComputeExponentialBackOffMilliseconds(
int retry_num) {
DCHECK(retry_num < max_fetch_retry_num_);
- int64_t exponential_backoff_in_seconds = 1 << retry_num;
+ int exponential_backoff_in_seconds = 1 << retry_num;
// Returns a backoff with randomness < 1000ms
return (exponential_backoff_in_seconds + base::RandDouble()) * 1000;
}