| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <map> | 10 #include <map> |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 GpuMsgStart, | 59 GpuMsgStart, |
| 60 ServiceMsgStart, | 60 ServiceMsgStart, |
| 61 PpapiMsgStart, | 61 PpapiMsgStart, |
| 62 FirefoxImporterUnittestMsgStart, | 62 FirefoxImporterUnittestMsgStart, |
| 63 FileUtilitiesMsgStart, | 63 FileUtilitiesMsgStart, |
| 64 MimeRegistryMsgStart, | 64 MimeRegistryMsgStart, |
| 65 DatabaseMsgStart, | 65 DatabaseMsgStart, |
| 66 DOMStorageMsgStart, | 66 DOMStorageMsgStart, |
| 67 IndexedDBMsgStart, | 67 IndexedDBMsgStart, |
| 68 PepperFileMsgStart, | 68 PepperFileMsgStart, |
| 69 SpeechInputMsgStart, | 69 SpeechRecognitionMsgStart, |
| 70 PepperMsgStart, | 70 PepperMsgStart, |
| 71 AutofillMsgStart, | 71 AutofillMsgStart, |
| 72 SafeBrowsingMsgStart, | 72 SafeBrowsingMsgStart, |
| 73 P2PMsgStart, | 73 P2PMsgStart, |
| 74 SocketStreamMsgStart, | 74 SocketStreamMsgStart, |
| 75 ResourceMsgStart, | 75 ResourceMsgStart, |
| 76 FileSystemMsgStart, | 76 FileSystemMsgStart, |
| 77 ChildProcessMsgStart, | 77 ChildProcessMsgStart, |
| 78 ClipboardMsgStart, | 78 ClipboardMsgStart, |
| 79 BlobMsgStart, | 79 BlobMsgStart, |
| (...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1140 ReplyParam p(a, b, c, d, e); | 1140 ReplyParam p(a, b, c, d, e); |
| 1141 WriteParam(reply, p); | 1141 WriteParam(reply, p); |
| 1142 } | 1142 } |
| 1143 }; | 1143 }; |
| 1144 | 1144 |
| 1145 //----------------------------------------------------------------------------- | 1145 //----------------------------------------------------------------------------- |
| 1146 | 1146 |
| 1147 } // namespace IPC | 1147 } // namespace IPC |
| 1148 | 1148 |
| 1149 #endif // IPC_IPC_MESSAGE_UTILS_H_ | 1149 #endif // IPC_IPC_MESSAGE_UTILS_H_ |
| OLD | NEW |