| Index: chrome/browser/chromeos/policy/auto_enrollment_client.h
|
| diff --git a/chrome/browser/chromeos/policy/auto_enrollment_client.h b/chrome/browser/chromeos/policy/auto_enrollment_client.h
|
| index b2140795beaf104a9b7c91b90685e5c2d1fb3fe8..d42c1a58ed0cc1da693b880c7b51e4d8118f438f 100644
|
| --- a/chrome/browser/chromeos/policy/auto_enrollment_client.h
|
| +++ b/chrome/browser/chromeos/policy/auto_enrollment_client.h
|
| @@ -5,11 +5,13 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_POLICY_AUTO_ENROLLMENT_CLIENT_H_
|
| #define CHROME_BROWSER_CHROMEOS_POLICY_AUTO_ENROLLMENT_CLIENT_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/callback.h"
|
| #include "base/compiler_specific.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/time/time.h"
|
| #include "components/policy/core/common/cloud/cloud_policy_constants.h"
|
| @@ -54,9 +56,9 @@ enum AutoEnrollmentState {
|
| class AutoEnrollmentClient
|
| : public net::NetworkChangeNotifier::NetworkChangeObserver {
|
| public:
|
| - // The modulus value is sent in an int64 field in the protobuf, whose maximum
|
| - // value is 2^63-1. So 2^64 and 2^63 can't be represented as moduli and the
|
| - // max is 2^62 (when the moduli are restricted to powers-of-2).
|
| + // The modulus value is sent in an int64_t field in the protobuf, whose
|
| + // maximum value is 2^63-1. So 2^64 and 2^63 can't be represented as moduli
|
| + // and the max is 2^62 (when the moduli are restricted to powers-of-2).
|
| static const int kMaximumPower = 62;
|
|
|
| // Used for signaling progress to a consumer.
|
|
|