| 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, | |
| 63 ServiceMsgStart, | 61 ServiceMsgStart, |
| 64 ServiceHostMsgStart, | 62 ServiceHostMsgStart, |
| 65 // NOTE: When you add a new message class, also update | 63 // NOTE: When you add a new message class, also update |
| 66 // IPCStatusView::IPCStatusView to ensure logging works. | 64 // IPCStatusView::IPCStatusView to ensure logging works. |
| 67 LastMsgIndex | 65 LastMsgIndex |
| 68 }; | 66 }; |
| 69 | 67 |
| 70 namespace IPC { | 68 namespace IPC { |
| 71 | 69 |
| 72 //----------------------------------------------------------------------------- | 70 //----------------------------------------------------------------------------- |
| (...skipping 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1311 ReplyParam p(a, b, c, d, e); | 1309 ReplyParam p(a, b, c, d, e); |
| 1312 WriteParam(reply, p); | 1310 WriteParam(reply, p); |
| 1313 } | 1311 } |
| 1314 }; | 1312 }; |
| 1315 | 1313 |
| 1316 //----------------------------------------------------------------------------- | 1314 //----------------------------------------------------------------------------- |
| 1317 | 1315 |
| 1318 } // namespace IPC | 1316 } // namespace IPC |
| 1319 | 1317 |
| 1320 #endif // IPC_IPC_MESSAGE_UTILS_H_ | 1318 #endif // IPC_IPC_MESSAGE_UTILS_H_ |
| OLD | NEW |