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/nl80211_message.h b/nl80211_message.h
index c6bbbee..1b336f2 100644
--- a/nl80211_message.h
+++ b/nl80211_message.h
@@ -24,7 +24,7 @@
  public:
   static const char kMessageTypeString[];
 
-  Nl80211Message(uint8 command, const char *command_string)
+  Nl80211Message(uint8_t command, const char *command_string)
       : GenericNetlinkMessage(nl80211_message_type_, command, command_string) {}
   virtual ~Nl80211Message() {}
 
@@ -36,7 +36,7 @@
 
   virtual bool InitFromNlmsg(const nlmsghdr *msg);
 
-  uint8 command() const { return command_; }
+  uint8_t command() const { return command_; }
   const char *command_string() const { return command_string_; }
   uint16_t message_type() const { return message_type_; }
   uint32_t sequence_number() const { return sequence_number_; }