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

Unified Diff: chromeos/binder/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/driver.cc ('k') | chromeos/binder/transaction_data.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/binder/status.h
diff --git a/chromeos/binder/status.h b/chromeos/binder/status.h
index 0bcf4fa24018c38b147e208ef48af37e45dd600e..346211e10efd10c6c95b9df7a2fdd236972a7f98 100644
--- a/chromeos/binder/status.h
+++ b/chromeos/binder/status.h
@@ -6,14 +6,13 @@
#define CHROMEOS_BINDER_STATUS_H_
#include <errno.h>
-
-#include "base/basictypes.h"
+#include <stdint.h>
namespace binder {
// Status code.
// Using the same values as used by libbinder.
-enum class Status : int32 {
+enum class Status : int32_t {
OK = 0,
UNKNOWN_ERROR = INT32_MIN,
« no previous file with comments | « chromeos/binder/driver.cc ('k') | chromeos/binder/transaction_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698