summaryrefslogtreecommitdiffstats
path: root/chromeos/binder/util.cc
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2015-12-20 19:43:20 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-21 03:44:30 +0000
commit6e1a22dbf2f897399d459f0e1a813decf02ff002 (patch)
tree1514d498779a6799f72b1f0310c7c54ec533494b /chromeos/binder/util.cc
parent77bc325cc5c97ebff1d447ac972fd02e2aec4155 (diff)
downloadchromium_src-6e1a22dbf2f897399d459f0e1a813decf02ff002.zip
chromium_src-6e1a22dbf2f897399d459f0e1a813decf02ff002.tar.gz
chromium_src-6e1a22dbf2f897399d459f0e1a813decf02ff002.tar.bz2
Switch to standard integer types in chromeos/.
BUG=138542 TBR=zelidrag@chromium.org Review URL: https://codereview.chromium.org/1540803002 Cr-Commit-Position: refs/heads/master@{#366324}
Diffstat (limited to 'chromeos/binder/util.cc')
-rw-r--r--chromeos/binder/util.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chromeos/binder/util.cc b/chromeos/binder/util.cc
index e5788a3..cd9802d 100644
--- a/chromeos/binder/util.cc
+++ b/chromeos/binder/util.cc
@@ -5,12 +5,13 @@
#include "chromeos/binder/util.h"
#include <linux/android/binder.h>
+#include <stdint.h>
#include "base/logging.h"
namespace binder {
-const char* CommandToString(uint32 command) {
+const char* CommandToString(uint32_t command) {
switch (command) {
case BR_ERROR:
return "BR_ERROR";