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