| Index: chromeos/tpm/tpm_token_info_getter.cc
|
| diff --git a/chromeos/tpm/tpm_token_info_getter.cc b/chromeos/tpm/tpm_token_info_getter.cc
|
| index 6f6dfe7b3b1fb3eb767422a8836cc780678b8bb3..e51392f8fb703937bf890d89d47ffca4584f126a 100644
|
| --- a/chromeos/tpm/tpm_token_info_getter.cc
|
| +++ b/chromeos/tpm/tpm_token_info_getter.cc
|
| @@ -4,14 +4,16 @@
|
|
|
| #include "chromeos/tpm/tpm_token_info_getter.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/bind.h"
|
| #include "base/location.h"
|
| #include "chromeos/dbus/cryptohome_client.h"
|
|
|
| namespace {
|
|
|
| -const int64 kInitialRequestDelayMs = 100;
|
| -const int64 kMaxRequestDelayMs = 300000; // 5 minutes
|
| +const int64_t kInitialRequestDelayMs = 100;
|
| +const int64_t kMaxRequestDelayMs = 300000; // 5 minutes
|
|
|
| // Calculates the delay before running next attempt to initiatialize the TPM
|
| // token, if |last_delay| was the last or initial delay.
|
|
|