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, |