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/arp_packet_unittest.cc b/arp_packet_unittest.cc
index a952718..11141a8 100644
--- a/arp_packet_unittest.cc
+++ b/arp_packet_unittest.cc
@@ -15,21 +15,21 @@
 namespace shill {
 
 namespace {
-const uint8 kArpRequestV4[] =
+const uint8_t kArpRequestV4[] =
     { 0x00, 0x01, 0x08, 0x00, 0x06, 0x04, 0x00, 0x01 };
-const uint8 kArpRequestV6[] =
+const uint8_t kArpRequestV6[] =
     { 0x00, 0x01, 0x86, 0xdd, 0x06, 0x10, 0x00, 0x01 };
-const uint8 kArpReplyV4[] =
+const uint8_t kArpReplyV4[] =
     { 0x00, 0x01, 0x08, 0x00, 0x06, 0x04, 0x00, 0x02 };
-const uint8 kArpReplyV6[] =
+const uint8_t kArpReplyV6[] =
     { 0x00, 0x01, 0x86, 0xdd, 0x06, 0x10, 0x00, 0x02 };
 const char kIPv4Address0[] = "192.168.0.1";
 const char kIPv4Address1[] = "10.0.12.13";
 const char kIPv6Address0[] = "fe80::1aa9:5ff:7ebf:14c5";
 const char kIPv6Address1[] = "1980:0:0:1000:1b02:1aa9:5ff:7ebf";
-const uint8 kMACAddress0[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05 };
-const uint8 kMACAddress1[] = { 0x88, 0x87, 0x86, 0x85, 0x84, 0x83 };
-const uint8 kInsertedByte[] = { 0x00 };
+const uint8_t kMACAddress0[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05 };
+const uint8_t kMACAddress1[] = { 0x88, 0x87, 0x86, 0x85, 0x84, 0x83 };
+const uint8_t kInsertedByte[] = { 0x00 };
 const size_t kArpPaddingSizeV4 = 18;
 const size_t kArpPaddingSizeV6 = 0;
 }  // namespace