| Index: chromeos/binder/constants.h
|
| diff --git a/chromeos/binder/constants.h b/chromeos/binder/constants.h
|
| index d039b1812125be23b530cf7e299d487392878ece..531021d59e0e9e14ab0b9f01f315cb53d22f1cd8 100644
|
| --- a/chromeos/binder/constants.h
|
| +++ b/chromeos/binder/constants.h
|
| @@ -11,12 +11,12 @@
|
| namespace binder {
|
|
|
| // Context manager's handle is always 0.
|
| -const uint32 kContextManagerHandle = 0;
|
| +const uint32_t kContextManagerHandle = 0;
|
|
|
| // Transaction code constants.
|
| -const uint32 kFirstTransactionCode = 0x00000001;
|
| -const uint32 kLastTransactionCode = 0x00ffffff;
|
| -const uint32 kPingTransactionCode = BINDER_PACK_CHARS('_', 'P', 'N', 'G');
|
| +const uint32_t kFirstTransactionCode = 0x00000001;
|
| +const uint32_t kLastTransactionCode = 0x00ffffff;
|
| +const uint32_t kPingTransactionCode = BINDER_PACK_CHARS('_', 'P', 'N', 'G');
|
|
|
| } // namespace binder
|
|
|
|
|