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/update_attempter.cc b/update_attempter.cc
index bd086a8..437ff42 100644
--- a/update_attempter.cc
+++ b/update_attempter.cc
@@ -4,6 +4,8 @@
 
 #include "update_engine/update_attempter.h"
 
+#include <stdint.h>
+
 #include <algorithm>
 #include <memory>
 #include <set>
@@ -447,7 +449,7 @@
   TimeDelta old_scatter_factor = scatter_factor_;
   const policy::DevicePolicy* device_policy = system_state_->device_policy();
   if (device_policy) {
-    int64 new_scatter_factor_in_secs = 0;
+    int64_t new_scatter_factor_in_secs = 0;
     device_policy->GetScatterFactorInSeconds(&new_scatter_factor_in_secs);
     if (new_scatter_factor_in_secs < 0)  // sanitize input, just in case.
       new_scatter_factor_in_secs  = 0;
@@ -474,7 +476,7 @@
     //    (omaha_request_params_->waiting_period will be zero in this case).
     // 2. Admin has changed the scattering policy value.
     //    (new scattering value will be different from old one in this case).
-    int64 wait_period_in_secs = 0;
+    int64_t wait_period_in_secs = 0;
     if (omaha_request_params_->waiting_period().InSeconds() == 0) {
       // First case. Check if we have a suitable value to set for
       // the waiting period.
@@ -1427,7 +1429,7 @@
 
 
 bool UpdateAttempter::DecrementUpdateCheckCount() {
-  int64 update_check_count_value;
+  int64_t update_check_count_value;
 
   if (!prefs_->Exists(kPrefsUpdateCheckCount)) {
     // This file does not exist. This means we haven't started our update