| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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_START_H_ | 5 #ifndef IPC_IPC_MESSAGE_START_H_ |
| 6 #define IPC_IPC_MESSAGE_START_H_ | 6 #define IPC_IPC_MESSAGE_START_H_ |
| 7 | 7 |
| 8 // Used by IPC_BEGIN_MESSAGES so that each message class starts from a unique | 8 // Used by IPC_BEGIN_MESSAGES so that each message class starts from a unique |
| 9 // base. Messages have unique IDs across channels in order for the IPC logging | 9 // base. Messages have unique IDs across channels in order for the IPC logging |
| 10 // code to figure out the message class from its ID. | 10 // code to figure out the message class from its ID. |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 SpeechRecognitionMsgStart, | 33 SpeechRecognitionMsgStart, |
| 34 PepperMsgStart, | 34 PepperMsgStart, |
| 35 AutofillMsgStart, | 35 AutofillMsgStart, |
| 36 SafeBrowsingMsgStart, | 36 SafeBrowsingMsgStart, |
| 37 P2PMsgStart, | 37 P2PMsgStart, |
| 38 ResourceMsgStart, | 38 ResourceMsgStart, |
| 39 FileSystemMsgStart, | 39 FileSystemMsgStart, |
| 40 ChildProcessMsgStart, | 40 ChildProcessMsgStart, |
| 41 ClipboardMsgStart, | 41 ClipboardMsgStart, |
| 42 BlobMsgStart, | 42 BlobMsgStart, |
| 43 AsyncBlobMsgStart, |
| 43 AppCacheMsgStart, | 44 AppCacheMsgStart, |
| 44 DeviceLightMsgStart, | 45 DeviceLightMsgStart, |
| 45 DeviceMotionMsgStart, | 46 DeviceMotionMsgStart, |
| 46 DeviceOrientationMsgStart, | 47 DeviceOrientationMsgStart, |
| 47 AudioMsgStart, | 48 AudioMsgStart, |
| 48 MidiMsgStart, | 49 MidiMsgStart, |
| 49 ChromeMsgStart, | 50 ChromeMsgStart, |
| 50 DragMsgStart, | 51 DragMsgStart, |
| 51 PrintMsgStart, | 52 PrintMsgStart, |
| 52 SpellCheckMsgStart, | 53 SpellCheckMsgStart, |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 SafeJsonParserMsgStart, | 126 SafeJsonParserMsgStart, |
| 126 AttachmentBrokerMsgStart, | 127 AttachmentBrokerMsgStart, |
| 127 RenderProcessMsgStart, | 128 RenderProcessMsgStart, |
| 128 PageLoadMetricsMsgStart, | 129 PageLoadMetricsMsgStart, |
| 129 MemoryMsgStart, | 130 MemoryMsgStart, |
| 130 IPCTestMsgStart, | 131 IPCTestMsgStart, |
| 131 LastIPCMsgStart // Must come last. | 132 LastIPCMsgStart // Must come last. |
| 132 }; | 133 }; |
| 133 | 134 |
| 134 #endif // IPC_IPC_MESSAGE_START_H_ | 135 #endif // IPC_IPC_MESSAGE_START_H_ |
| OLD | NEW |