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

Unified Diff: chromeos/binder/transaction_status.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_reader_unittest.cc ('k') | chromeos/binder/transaction_status.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/binder/transaction_status.h
diff --git a/chromeos/binder/transaction_status.h b/chromeos/binder/transaction_status.h
index c239e73e7962ede873522804cf5fa8d8963b2d1f..088d1738c0f87a0a126f60e9882527c751a9c7e0 100644
--- a/chromeos/binder/transaction_status.h
+++ b/chromeos/binder/transaction_status.h
@@ -5,7 +5,9 @@
#ifndef CHROMEOS_BINDER_TRANSACTION_STATUS_H_
#define CHROMEOS_BINDER_TRANSACTION_STATUS_H_
-#include "base/basictypes.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include "base/macros.h"
#include "chromeos/binder/status.h"
#include "chromeos/binder/transaction_data.h"
@@ -23,7 +25,7 @@ class CHROMEOS_EXPORT TransactionStatus : 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_reader_unittest.cc ('k') | chromeos/binder/transaction_status.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698