shill: Use integer types from stdint.h
This CL replaces the deprecated int* and uint* types from
'base/basictypes.h' with the int*_t and uint*_t types from 'stdint.h'.
BUG=chromium:401356
TEST=`USE='cellular gdmwimax wimax' FEATURES=test emerge-$BOARD platform2`
Change-Id: I3d4c195881203dd2a47dbb5af150b6c90b9c206e
Reviewed-on: https://chromium-review.googlesource.com/211770
Reviewed-by: Mike Frysinger <vapier@chromium.org>
Commit-Queue: Ben Chan <benchan@chromium.org>
Tested-by: Ben Chan <benchan@chromium.org>
diff --git a/cellular_capability_gsm_unittest.cc b/cellular_capability_gsm_unittest.cc
index a8e336f..9cf7fe9 100644
--- a/cellular_capability_gsm_unittest.cc
+++ b/cellular_capability_gsm_unittest.cc
@@ -227,11 +227,11 @@
capability_->network_proxy_.reset(network_proxy_.release());
}
- void SetAccessTechnology(uint32 technology) {
+ void SetAccessTechnology(uint32_t technology) {
capability_->access_technology_ = technology;
}
- void SetRegistrationState(uint32 state) {
+ void SetRegistrationState(uint32_t state) {
capability_->registration_state_ = state;
}