| Index: chromeos/network/device_state.h
|
| diff --git a/chromeos/network/device_state.h b/chromeos/network/device_state.h
|
| index 00e49078d4207c13931887629ad7b7391625ab9c..97ebd0b908d2c7fdea32ea45e72235d7f2af121a 100644
|
| --- a/chromeos/network/device_state.h
|
| +++ b/chromeos/network/device_state.h
|
| @@ -5,6 +5,9 @@
|
| #ifndef CHROMEOS_NETWORK_DEVICE_STATE_H_
|
| #define CHROMEOS_NETWORK_DEVICE_STATE_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "base/values.h"
|
| #include "chromeos/network/managed_state.h"
|
| #include "chromeos/network/network_util.h"
|
| @@ -41,7 +44,7 @@ class CHROMEOS_EXPORT DeviceState : public ManagedState {
|
| const std::string& technology_family() const { return technology_family_; }
|
| const std::string& carrier() const { return carrier_; }
|
| const std::string& sim_lock_type() const { return sim_lock_type_; }
|
| - uint32 sim_retries_left() const { return sim_retries_left_; }
|
| + uint32_t sim_retries_left() const { return sim_retries_left_; }
|
| const std::string& meid() const { return meid_; }
|
| const std::string& imei() const { return imei_; }
|
| const std::string& iccid() const { return iccid_; }
|
| @@ -79,7 +82,7 @@ class CHROMEOS_EXPORT DeviceState : public ManagedState {
|
| std::string technology_family_;
|
| std::string carrier_;
|
| std::string sim_lock_type_;
|
| - uint32 sim_retries_left_;
|
| + uint32_t sim_retries_left_;
|
| bool sim_present_;
|
| std::string meid_;
|
| std::string imei_;
|
|
|