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 17 matching lines...) Expand all Loading... |
28 FileUtilitiesMsgStart, | 28 FileUtilitiesMsgStart, |
29 MimeRegistryMsgStart, | 29 MimeRegistryMsgStart, |
30 DatabaseMsgStart, | 30 DatabaseMsgStart, |
31 DOMStorageMsgStart, | 31 DOMStorageMsgStart, |
32 IndexedDBMsgStart, | 32 IndexedDBMsgStart, |
33 SpeechRecognitionMsgStart, | 33 SpeechRecognitionMsgStart, |
34 PepperMsgStart, | 34 PepperMsgStart, |
35 AutofillMsgStart, | 35 AutofillMsgStart, |
36 SafeBrowsingMsgStart, | 36 SafeBrowsingMsgStart, |
37 P2PMsgStart, | 37 P2PMsgStart, |
38 SocketStreamMsgStart, | |
39 ResourceMsgStart, | 38 ResourceMsgStart, |
40 FileSystemMsgStart, | 39 FileSystemMsgStart, |
41 ChildProcessMsgStart, | 40 ChildProcessMsgStart, |
42 ClipboardMsgStart, | 41 ClipboardMsgStart, |
43 BlobMsgStart, | 42 BlobMsgStart, |
44 AppCacheMsgStart, | 43 AppCacheMsgStart, |
45 DeviceLightMsgStart, | 44 DeviceLightMsgStart, |
46 DeviceMotionMsgStart, | 45 DeviceMotionMsgStart, |
47 DeviceOrientationMsgStart, | 46 DeviceOrientationMsgStart, |
48 GeolocationMsgStart, | |
49 AudioMsgStart, | 47 AudioMsgStart, |
50 MidiMsgStart, | 48 MidiMsgStart, |
51 ChromeMsgStart, | 49 ChromeMsgStart, |
52 DragMsgStart, | 50 DragMsgStart, |
53 PrintMsgStart, | 51 PrintMsgStart, |
54 SpellCheckMsgStart, | 52 SpellCheckMsgStart, |
55 ExtensionMsgStart, | 53 ExtensionMsgStart, |
56 VideoCaptureMsgStart, | 54 VideoCaptureMsgStart, |
57 QuotaMsgStart, | 55 QuotaMsgStart, |
58 ImageMsgStart, | 56 ImageMsgStart, |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 CastMsgStart, | 90 CastMsgStart, |
93 CdmMsgStart, | 91 CdmMsgStart, |
94 ScreenOrientationMsgStart, | 92 ScreenOrientationMsgStart, |
95 MediaStreamTrackMetricsHostMsgStart, | 93 MediaStreamTrackMetricsHostMsgStart, |
96 ChromeExtensionMsgStart, | 94 ChromeExtensionMsgStart, |
97 MojoMsgStart, | 95 MojoMsgStart, |
98 TranslateMsgStart, | 96 TranslateMsgStart, |
99 CldDataProviderMsgStart, | 97 CldDataProviderMsgStart, |
100 PushMessagingMsgStart, | 98 PushMessagingMsgStart, |
101 GinJavaBridgeMsgStart, | 99 GinJavaBridgeMsgStart, |
102 BatteryStatusMsgStart, | |
103 ChromeUtilityPrintingMsgStart, | 100 ChromeUtilityPrintingMsgStart, |
104 AecDumpMsgStart, | 101 AecDumpMsgStart, |
105 OzoneGpuMsgStart, | 102 OzoneGpuMsgStart, |
106 ChromeUtilityExtensionsMsgStart, | 103 ChromeUtilityExtensionsMsgStart, |
107 PlatformNotificationMsgStart, | 104 PlatformNotificationMsgStart, |
108 CredentialManagerMsgStart, | 105 CredentialManagerMsgStart, |
109 PDFMsgStart, | 106 PDFMsgStart, |
110 WebCacheMsgStart, | 107 WebCacheMsgStart, |
111 ManifestManagerMsgStart, | 108 ManifestManagerMsgStart, |
112 ExtensionUtilityMsgStart, | 109 ExtensionUtilityMsgStart, |
113 GeofencingMsgStart, | 110 GeofencingMsgStart, |
114 LayoutTestMsgStart, | 111 LayoutTestMsgStart, |
115 DnsPrefetchMsgStart, | 112 DnsPrefetchMsgStart, |
116 BluetoothMsgStart, | 113 BluetoothMsgStart, |
117 NavigatorConnectMsgStart, | 114 NavigatorConnectMsgStart, |
118 CastMediaMsgStart, | 115 CastMediaMsgStart, |
119 LastIPCMsgStart // Must come last. | 116 LastIPCMsgStart // Must come last. |
120 }; | 117 }; |
121 | 118 |
122 #endif // IPC_IPC_MESSAGE_START_H_ | 119 #endif // IPC_IPC_MESSAGE_START_H_ |
OLD | NEW |