update_engine: 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=`FEATURES=test emerge-$BOARD update_engine`

Change-Id: I658b34ad9e6feb938e0b569b72947a052ef8f8af
Reviewed-on: https://chromium-review.googlesource.com/211380
Reviewed-by: Mike Frysinger <vapier@chromium.org>
Tested-by: Ben Chan <benchan@chromium.org>
Commit-Queue: Ben Chan <benchan@chromium.org>
diff --git a/prefs_interface.h b/prefs_interface.h
index daf9196..6c0a741 100644
--- a/prefs_interface.h
+++ b/prefs_interface.h
@@ -5,6 +5,8 @@
 #ifndef UPDATE_ENGINE_PREFS_INTERFACE_H_
 #define UPDATE_ENGINE_PREFS_INTERFACE_H_
 
+#include <stdint.h>
+
 #include <string>
 
 namespace chromeos_update_engine {
@@ -25,12 +27,12 @@
   // false otherwise.
   virtual bool SetString(const std::string& key, const std::string& value) = 0;
 
-  // Gets an int64 |value| associated with |key|. Returns true on
+  // Gets an int64_t |value| associated with |key|. Returns true on
   // success, false on failure (including when the |key| is not
   // present in the store).
   virtual bool GetInt64(const std::string& key, int64_t* value) = 0;
 
-  // Associates |key| with an int64 |value|. Returns true on success,
+  // Associates |key| with an int64_t |value|. Returns true on success,
   // false otherwise.
   virtual bool SetInt64(const std::string& key, const int64_t value) = 0;