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/service_property_change_notifier.h b/service_property_change_notifier.h
index b0b10cc..8307e7b 100644
--- a/service_property_change_notifier.h
+++ b/service_property_change_notifier.h
@@ -52,10 +52,10 @@
  private:
   // Redirects templated calls to a value reference to a by-copy version.
   void BoolPropertyUpdater(const std::string &name, const bool &value);
-  void Uint8PropertyUpdater(const std::string &name, const uint8 &value);
-  void Uint16PropertyUpdater(const std::string &name, const uint16 &value);
-  void Uint32PropertyUpdater(const std::string &name, const uint32 &value);
-  void Int32PropertyUpdater(const std::string &name, const int32 &value);
+  void Uint8PropertyUpdater(const std::string &name, const uint8_t &value);
+  void Uint16PropertyUpdater(const std::string &name, const uint16_t &value);
+  void Uint32PropertyUpdater(const std::string &name, const uint32_t &value);
+  void Int32PropertyUpdater(const std::string &name, const int32_t &value);
 
   ServiceAdaptorInterface *rpc_adaptor_;
   std::vector<scoped_ptr<PropertyObserverInterface>> property_observers_;