| Index: components/metrics/client_info.h
|
| diff --git a/components/metrics/client_info.h b/components/metrics/client_info.h
|
| index 733d08788789ba28ed3e9c1de3217a6350f3c376..7dcf5d8de396ef0ae6173869aedc3fc144a8ab7d 100644
|
| --- a/components/metrics/client_info.h
|
| +++ b/components/metrics/client_info.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef COMPONENTS_METRICS_CLIENT_INFO_H_
|
| #define COMPONENTS_METRICS_CLIENT_INFO_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/macros.h"
|
|
|
| namespace metrics {
|
| @@ -23,11 +24,11 @@ struct ClientInfo {
|
| std::string client_id;
|
|
|
| // The installation date: represented as an epoch time in seconds.
|
| - int64 installation_date;
|
| + int64_t installation_date;
|
|
|
| // The date on which metrics reporting was enabled: represented as an epoch
|
| // time in seconds.
|
| - int64 reporting_enabled_date;
|
| + int64_t reporting_enabled_date;
|
| };
|
|
|
| } // namespace metrics
|
|
|