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

Unified Diff: chromeos/binder/transaction_data_from_driver.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/transaction_data_from_driver.h ('k') | chromeos/binder/transaction_data_reader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/binder/transaction_data_from_driver.cc
diff --git a/chromeos/binder/transaction_data_from_driver.cc b/chromeos/binder/transaction_data_from_driver.cc
index 9b76ebf3a72e0039888745fda1e4cc8a14dc69c8..b14c324eab13ca535e40377cf461339b36d89209 100644
--- a/chromeos/binder/transaction_data_from_driver.cc
+++ b/chromeos/binder/transaction_data_from_driver.cc
@@ -4,6 +4,9 @@
#include "chromeos/binder/transaction_data_from_driver.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include "base/bind.h"
#include "base/location.h"
#include "base/logging.h"
@@ -44,7 +47,7 @@ uintptr_t TransactionDataFromDriver::GetCookie() const {
return data_.cookie;
}
-uint32 TransactionDataFromDriver::GetCode() const {
+uint32_t TransactionDataFromDriver::GetCode() const {
return data_.code;
}
« no previous file with comments | « chromeos/binder/transaction_data_from_driver.h ('k') | chromeos/binder/transaction_data_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698