| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 GpuCommandBufferMsgStart, | 69 GpuCommandBufferMsgStart, |
| 70 UtilityMsgStart, | 70 UtilityMsgStart, |
| 71 UtilityHostMsgStart, | 71 UtilityHostMsgStart, |
| 72 GpuMsgStart, | 72 GpuMsgStart, |
| 73 GpuHostMsgStart, | 73 GpuHostMsgStart, |
| 74 GpuChannelMsgStart, | 74 GpuChannelMsgStart, |
| 75 GpuVideoDecoderHostMsgStart, | 75 GpuVideoDecoderHostMsgStart, |
| 76 GpuVideoDecoderMsgStart, | 76 GpuVideoDecoderMsgStart, |
| 77 ServiceMsgStart, | 77 ServiceMsgStart, |
| 78 ServiceHostMsgStart, | 78 ServiceHostMsgStart, |
| 79 PpapiMsgStart, |
| 80 PpapiHostMsgStart, |
| 79 // NOTE: When you add a new message class, also update | 81 // NOTE: When you add a new message class, also update |
| 80 // IPCStatusView::IPCStatusView to ensure logging works. | 82 // IPCStatusView::IPCStatusView to ensure logging works. |
| 81 LastMsgIndex | 83 LastMsgIndex |
| 82 }; | 84 }; |
| 83 | 85 |
| 84 class DictionaryValue; | 86 class DictionaryValue; |
| 85 class FilePath; | 87 class FilePath; |
| 86 class ListValue; | 88 class ListValue; |
| 87 class NullableString16; | 89 class NullableString16; |
| 88 | 90 |
| (...skipping 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1189 ReplyParam p(a, b, c, d, e); | 1191 ReplyParam p(a, b, c, d, e); |
| 1190 WriteParam(reply, p); | 1192 WriteParam(reply, p); |
| 1191 } | 1193 } |
| 1192 }; | 1194 }; |
| 1193 | 1195 |
| 1194 //----------------------------------------------------------------------------- | 1196 //----------------------------------------------------------------------------- |
| 1195 | 1197 |
| 1196 } // namespace IPC | 1198 } // namespace IPC |
| 1197 | 1199 |
| 1198 #endif // IPC_IPC_MESSAGE_UTILS_H_ | 1200 #endif // IPC_IPC_MESSAGE_UTILS_H_ |
| OLD | NEW |