| Index: mojo/edk/system/message_in_transit.h
|
| diff --git a/mojo/edk/system/message_in_transit.h b/mojo/edk/system/message_in_transit.h
|
| index 038a29281bc69688aa70c8a69cebebb2f485d6c4..3ade44bc47bc33a4b9822d864a4810d700b38b66 100644
|
| --- a/mojo/edk/system/message_in_transit.h
|
| +++ b/mojo/edk/system/message_in_transit.h
|
| @@ -43,7 +43,7 @@ class TransportData;
|
| // buffer.
|
| class MOJO_SYSTEM_IMPL_EXPORT MessageInTransit {
|
| public:
|
| - typedef uint16_t Type;
|
| + using Type = uint16_t;
|
| // Messages that are forwarded to endpoint clients.
|
| static const Type kTypeEndpointClient = 0;
|
| // Messages that are consumed by the |ChannelEndpoint|.
|
| @@ -58,7 +58,7 @@ class MOJO_SYSTEM_IMPL_EXPORT MessageInTransit {
|
| // Messages sent by a |MasterConnectionManager| (all responses).
|
| static const Type kTypeConnectionManagerAck = 5;
|
|
|
| - typedef uint16_t Subtype;
|
| + using Subtype = uint16_t;
|
| // Subtypes for type |kTypeEndpointClient|:
|
| // Message pipe or data pipe data (etc.).
|
| static const Subtype kSubtypeEndpointClientData = 0;
|
|
|