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

Unified Diff: chromeos/binder/transaction_data_from_driver.h

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.h ('k') | chromeos/binder/transaction_data_from_driver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/binder/transaction_data_from_driver.h
diff --git a/chromeos/binder/transaction_data_from_driver.h b/chromeos/binder/transaction_data_from_driver.h
index 96aee9a6328ee54370a57b907d3150ef9e6fa0d3..cf7837c1adc49bcec600a75962a2167c933b5999 100644
--- a/chromeos/binder/transaction_data_from_driver.h
+++ b/chromeos/binder/transaction_data_from_driver.h
@@ -5,8 +5,10 @@
#ifndef CHROMEOS_BINDER_TRANSACTION_DATA_FROM_DRIVER_H_
#define CHROMEOS_BINDER_TRANSACTION_DATA_FROM_DRIVER_H_
-#include <unistd.h>
#include <linux/android/binder.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <unistd.h>
#include "base/callback.h"
#include "base/macros.h"
@@ -33,7 +35,7 @@ class CHROMEOS_EXPORT TransactionDataFromDriver : public TransactionData {
// TransactionData override:
uintptr_t GetCookie() const override;
- uint32 GetCode() const override;
+ uint32_t GetCode() const override;
pid_t GetSenderPID() const override;
uid_t GetSenderEUID() const override;
bool IsOneWay() const override;
« no previous file with comments | « chromeos/binder/transaction_data.h ('k') | chromeos/binder/transaction_data_from_driver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698