Switch to standard integer types in dbus/.

BUG=138542
[email protected]

Review URL: https://codereview.chromium.org/1541193002

Cr-Commit-Position: refs/heads/master@{#366617}
diff --git a/dbus/exported_object.cc b/dbus/exported_object.cc
index 669b871e..3054c35 100644
--- a/dbus/exported_object.cc
+++ b/dbus/exported_object.cc
@@ -4,6 +4,8 @@
 
 #include "dbus/exported_object.h"
 
+#include <stdint.h>
+
 #include "base/bind.h"
 #include "base/logging.h"
 #include "base/memory/ref_counted.h"
@@ -148,7 +150,7 @@
 
 void ExportedObject::SendSignalInternal(base::TimeTicks start_time,
                                         DBusMessage* signal_message) {
-  uint32 serial = 0;
+  uint32_t serial = 0;
   bus_->Send(signal_message, &serial);
   dbus_message_unref(signal_message);
   // Record time spent to send the the signal. This is not accurate as the