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/socket_info_unittest.cc b/socket_info_unittest.cc
index 5e9c33d..69dc513 100644
--- a/socket_info_unittest.cc
+++ b/socket_info_unittest.cc
@@ -13,9 +13,9 @@
 const unsigned char kIPAddress1[] = { 192, 168, 1, 1 };
 const unsigned char kIPAddress2[] = { 192, 168, 1, 2 };
 const unsigned char kIPAddress3[] = { 192, 168, 1, 3 };
-const uint16 kPort1 = 1000;
-const uint16 kPort2 = 2000;
-const uint16 kPort3 = 3000;
+const uint16_t kPort1 = 1000;
+const uint16_t kPort2 = 2000;
+const uint16_t kPort3 = 3000;
 
 }  // namespace