| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 WebRTCIdentityMsgStart, | 74 WebRTCIdentityMsgStart, |
| 75 PowerMonitorMsgStart, | 75 PowerMonitorMsgStart, |
| 76 EncryptedMediaMsgStart, | 76 EncryptedMediaMsgStart, |
| 77 CacheStorageMsgStart, | 77 CacheStorageMsgStart, |
| 78 ServiceWorkerMsgStart, | 78 ServiceWorkerMsgStart, |
| 79 MessagePortMsgStart, | 79 MessagePortMsgStart, |
| 80 EmbeddedWorkerMsgStart, | 80 EmbeddedWorkerMsgStart, |
| 81 EmbeddedWorkerContextMsgStart, | 81 EmbeddedWorkerContextMsgStart, |
| 82 CastMsgStart, | 82 CastMsgStart, |
| 83 CdmMsgStart, | 83 CdmMsgStart, |
| 84 ScreenOrientationMsgStart, | |
| 85 MediaStreamTrackMetricsHostMsgStart, | 84 MediaStreamTrackMetricsHostMsgStart, |
| 86 ChromeExtensionMsgStart, | 85 ChromeExtensionMsgStart, |
| 87 PushMessagingMsgStart, | 86 PushMessagingMsgStart, |
| 88 GinJavaBridgeMsgStart, | 87 GinJavaBridgeMsgStart, |
| 89 ChromeUtilityPrintingMsgStart, | 88 ChromeUtilityPrintingMsgStart, |
| 90 AecDumpMsgStart, | 89 AecDumpMsgStart, |
| 91 OzoneGpuMsgStart, | 90 OzoneGpuMsgStart, |
| 92 ChromeUtilityExtensionsMsgStart, | 91 ChromeUtilityExtensionsMsgStart, |
| 93 PlatformNotificationMsgStart, | 92 PlatformNotificationMsgStart, |
| 94 PDFMsgStart, | 93 PDFMsgStart, |
| (...skipping 24 matching lines...) Expand all Loading... |
| 119 ArcCameraMsgStart, | 118 ArcCameraMsgStart, |
| 120 DWriteFontProxyMsgStart, | 119 DWriteFontProxyMsgStart, |
| 121 MediaPlayerDelegateMsgStart, | 120 MediaPlayerDelegateMsgStart, |
| 122 SurfaceViewManagerMsgStart, | 121 SurfaceViewManagerMsgStart, |
| 123 ExtensionWorkerMsgStart, | 122 ExtensionWorkerMsgStart, |
| 124 SubresourceFilterMsgStart, | 123 SubresourceFilterMsgStart, |
| 125 LastIPCMsgStart // Must come last. | 124 LastIPCMsgStart // Must come last. |
| 126 }; | 125 }; |
| 127 | 126 |
| 128 #endif // IPC_IPC_MESSAGE_START_H_ | 127 #endif // IPC_IPC_MESSAGE_START_H_ |
| OLD | NEW |