blob: 61f1dcc81419634add50851ffb8f962f438e9156 [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,
16 ProfileImportMsgStart,
17 TestMsgStart,
18 DevToolsMsgStart,
19 WorkerMsgStart,
20 NaClMsgStart,
21 UtilityMsgStart,
22 GpuMsgStart,
23 ServiceMsgStart,
24 PpapiMsgStart,
25 FirefoxImporterUnittestMsgStart,
26 FileUtilitiesMsgStart,
27 MimeRegistryMsgStart,
28 DatabaseMsgStart,
29 DOMStorageMsgStart,
30 IndexedDBMsgStart,
31 PepperFileMsgStart,
32 SpeechRecognitionMsgStart,
33 PepperMsgStart,
34 AutofillMsgStart,
35 SafeBrowsingMsgStart,
36 P2PMsgStart,
37 SocketStreamMsgStart,
38 ResourceMsgStart,
39 FileSystemMsgStart,
40 ChildProcessMsgStart,
41 ClipboardMsgStart,
42 BlobMsgStart,
43 AppCacheMsgStart,
44 DeviceMotionMsgStart,
45 DeviceOrientationMsgStart,
46 DesktopNotificationMsgStart,
47 GeolocationMsgStart,
48 AudioMsgStart,
49 ChromeMsgStart,
50 DragMsgStart,
51 PrintMsgStart,
52 SpellCheckMsgStart,
53 ExtensionMsgStart,
54 VideoCaptureMsgStart,
55 QuotaMsgStart,
[email protected]41225fe2013-03-29 05:32:0256 ImageMsgStart,
[email protected]f9509812012-10-23 23:03:3557 TextInputClientMsgStart,
58 ChromeUtilityMsgStart,
59 MediaStreamMsgStart,
60 ChromeBenchmarkingMsgStart,
61 IntentsMsgStart,
62 JavaBridgeMsgStart,
63 GamepadMsgStart,
64 ShellMsgStart,
65 AccessibilityMsgStart,
66 PrerenderMsgStart,
67 ChromotingMsgStart,
68 OldBrowserPluginMsgStart,
69 BrowserPluginMsgStart,
70 HyphenatorMsgStart,
71 AndroidWebViewMsgStart,
72 MetroViewerMsgStart,
73 CCMsgStart,
74 MediaPlayerMsgStart,
[email protected]92fe6102012-12-08 01:55:0775 TracingMsgStart,
[email protected]af089972013-01-10 04:04:4076 PeerConnectionTrackerMsgStart,
[email protected]1f371fa2013-01-23 00:35:1477 VisitedLinkMsgStart,
[email protected]b6b15bcc2013-02-01 05:34:2578 OneClickSigninMsgStart,
[email protected]acd2121c2013-03-18 05:54:5079 AppShimMsgStart,
[email protected]1352ca92013-04-30 02:30:2780 ValidationMessageMsgStart,
[email protected]fc8638a2013-04-18 09:17:0281 WebRtcLoggingMsgStart,
[email protected]f9509812012-10-23 23:03:3582 LastIPCMsgStart // Must come last.
83};
84
85#endif // IPC_IPC_MESSAGE_START_H_