OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef IPC_IPC_MESSAGE_UTILS_H_ | 5 #ifndef IPC_IPC_MESSAGE_UTILS_H_ |
6 #define IPC_IPC_MESSAGE_UTILS_H_ | 6 #define IPC_IPC_MESSAGE_UTILS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <string> | 10 #include <string> |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 WorkerProcessHostMsgStart, | 51 WorkerProcessHostMsgStart, |
52 WorkerMsgStart, | 52 WorkerMsgStart, |
53 WorkerHostMsgStart, | 53 WorkerHostMsgStart, |
54 NaClProcessMsgStart, | 54 NaClProcessMsgStart, |
55 GpuCommandBufferMsgStart, | 55 GpuCommandBufferMsgStart, |
56 UtilityMsgStart, | 56 UtilityMsgStart, |
57 UtilityHostMsgStart, | 57 UtilityHostMsgStart, |
58 GpuMsgStart, | 58 GpuMsgStart, |
59 GpuHostMsgStart, | 59 GpuHostMsgStart, |
60 GpuChannelMsgStart, | 60 GpuChannelMsgStart, |
| 61 GpuVideoDecoderHostMsgStart, |
| 62 GpuVideoDecoderMsgStart, |
61 ServiceMsgStart, | 63 ServiceMsgStart, |
62 ServiceHostMsgStart, | 64 ServiceHostMsgStart, |
63 // NOTE: When you add a new message class, also update | 65 // NOTE: When you add a new message class, also update |
64 // IPCStatusView::IPCStatusView to ensure logging works. | 66 // IPCStatusView::IPCStatusView to ensure logging works. |
65 LastMsgIndex | 67 LastMsgIndex |
66 }; | 68 }; |
67 | 69 |
68 namespace IPC { | 70 namespace IPC { |
69 | 71 |
70 //----------------------------------------------------------------------------- | 72 //----------------------------------------------------------------------------- |
(...skipping 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1309 ReplyParam p(a, b, c, d, e); | 1311 ReplyParam p(a, b, c, d, e); |
1310 WriteParam(reply, p); | 1312 WriteParam(reply, p); |
1311 } | 1313 } |
1312 }; | 1314 }; |
1313 | 1315 |
1314 //----------------------------------------------------------------------------- | 1316 //----------------------------------------------------------------------------- |
1315 | 1317 |
1316 } // namespace IPC | 1318 } // namespace IPC |
1317 | 1319 |
1318 #endif // IPC_IPC_MESSAGE_UTILS_H_ | 1320 #endif // IPC_IPC_MESSAGE_UTILS_H_ |
OLD | NEW |