blob: bf80df06912295c9364ae6b4043810935f432e61 [file] [log] [blame]
[email protected]f9509812012-10-23 23:03:351// Copyright 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef IPC_IPC_MESSAGE_START_H_
6#define IPC_IPC_MESSAGE_START_H_
7
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
10// code to figure out the message class from its ID.
11enum IPCMessageStart {
12 AutomationMsgStart = 0,
13 ViewMsgStart,
[email protected]c084330e02013-04-27 01:08:1514 InputMsgStart,
[email protected]f9509812012-10-23 23:03:3515 PluginMsgStart,
[email protected]872f3a92013-05-21 08:16:0816 PluginProcessMsgStart,
[email protected]f9509812012-10-23 23:03:3517 ProfileImportMsgStart,
18 TestMsgStart,
19 DevToolsMsgStart,
20 WorkerMsgStart,
21 NaClMsgStart,
22 UtilityMsgStart,
23 GpuMsgStart,
24 ServiceMsgStart,
25 PpapiMsgStart,
26 FirefoxImporterUnittestMsgStart,
27 FileUtilitiesMsgStart,
28 MimeRegistryMsgStart,
29 DatabaseMsgStart,
30 DOMStorageMsgStart,
31 IndexedDBMsgStart,
32 PepperFileMsgStart,
33 SpeechRecognitionMsgStart,
34 PepperMsgStart,
35 AutofillMsgStart,
36 SafeBrowsingMsgStart,
37 P2PMsgStart,
38 SocketStreamMsgStart,
39 ResourceMsgStart,
40 FileSystemMsgStart,
41 ChildProcessMsgStart,
42 ClipboardMsgStart,
43 BlobMsgStart,
44 AppCacheMsgStart,
45 DeviceMotionMsgStart,
46 DeviceOrientationMsgStart,
47 DesktopNotificationMsgStart,
48 GeolocationMsgStart,
49 AudioMsgStart,
[email protected]a9875152013-06-22 04:03:0350 MIDIMsgStart,
[email protected]f9509812012-10-23 23:03:3551 ChromeMsgStart,
52 DragMsgStart,
53 PrintMsgStart,
54 SpellCheckMsgStart,
55 ExtensionMsgStart,
56 VideoCaptureMsgStart,
57 QuotaMsgStart,
[email protected]41225fe2013-03-29 05:32:0258 ImageMsgStart,
[email protected]f9509812012-10-23 23:03:3559 TextInputClientMsgStart,
60 ChromeUtilityMsgStart,
61 MediaStreamMsgStart,
62 ChromeBenchmarkingMsgStart,
63 IntentsMsgStart,
64 JavaBridgeMsgStart,
65 GamepadMsgStart,
66 ShellMsgStart,
67 AccessibilityMsgStart,
68 PrerenderMsgStart,
69 ChromotingMsgStart,
70 OldBrowserPluginMsgStart,
71 BrowserPluginMsgStart,
72 HyphenatorMsgStart,
73 AndroidWebViewMsgStart,
74 MetroViewerMsgStart,
75 CCMsgStart,
76 MediaPlayerMsgStart,
[email protected]92fe6102012-12-08 01:55:0777 TracingMsgStart,
[email protected]af089972013-01-10 04:04:4078 PeerConnectionTrackerMsgStart,
[email protected]1f371fa2013-01-23 00:35:1479 VisitedLinkMsgStart,
[email protected]b6b15bcc2013-02-01 05:34:2580 OneClickSigninMsgStart,
[email protected]acd2121c2013-03-18 05:54:5081 AppShimMsgStart,
[email protected]1352ca92013-04-30 02:30:2782 ValidationMessageMsgStart,
[email protected]fc8638a2013-04-18 09:17:0283 WebRtcLoggingMsgStart,
[email protected]7a06d282013-05-03 04:39:3384 TtsMsgStart,
[email protected]a70ed8b32013-05-24 15:16:3485 MemoryBenchmarkMsgStart,
[email protected]e83ab822013-06-11 17:16:2286 WebSocketMsgStart,
[email protected]01e59752013-06-18 00:17:3587 NaClHostMsgStart,
[email protected]d3220662013-07-01 21:21:4688 WebRTCIdentityMsgStart,
89 LastIPCMsgStart // Must come last.
[email protected]f9509812012-10-23 23:03:3590};
91
92#endif // IPC_IPC_MESSAGE_START_H_