Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1828)

Unified Diff: chromeos/binder/util.cc

Issue 1540803002: Switch to standard integer types in chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/binder/util.h ('k') | chromeos/binder/writable_transaction_data.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/binder/util.cc
diff --git a/chromeos/binder/util.cc b/chromeos/binder/util.cc
index e5788a3e0b3919656db6bf16dddf8a95413afd4f..cd9802d938279a2948f8c9ee41377399b2ccbddc 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";
« no previous file with comments | « chromeos/binder/util.h ('k') | chromeos/binder/writable_transaction_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698