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

Unified Diff: chromeos/binder/command_broker.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/command_broker.h ('k') | chromeos/binder/command_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/binder/command_broker.cc
diff --git a/chromeos/binder/command_broker.cc b/chromeos/binder/command_broker.cc
index ada6c8e820c47793d8fc55ca5a7d7a4f197189e3..0a5393f494349b6c05504370423f018a21e1cdd1 100644
--- a/chromeos/binder/command_broker.cc
+++ b/chromeos/binder/command_broker.cc
@@ -5,6 +5,8 @@
#include "chromeos/binder/command_broker.h"
#include <linux/android/binder.h>
+#include <stddef.h>
+#include <stdint.h>
#include "base/logging.h"
#include "chromeos/binder/driver.h"
@@ -42,7 +44,7 @@ CommandBroker::~CommandBroker() {
DCHECK(thread_checker_.CalledOnValidThread());
}
-bool CommandBroker::Transact(int32 handle,
+bool CommandBroker::Transact(int32_t handle,
const TransactionData& request,
scoped_ptr<TransactionData>* reply) {
DCHECK(thread_checker_.CalledOnValidThread());
« no previous file with comments | « chromeos/binder/command_broker.h ('k') | chromeos/binder/command_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698