blob: 39923071a2cd14e6be2400e2690c628da1ca088c [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,
50 ChromeMsgStart,
51 DragMsgStart,
52 PrintMsgStart,
53 SpellCheckMsgStart,
54 ExtensionMsgStart,
55 VideoCaptureMsgStart,
56 QuotaMsgStart,
[email protected]41225fe2013-03-29 05:32:0257 ImageMsgStart,
[email protected]f9509812012-10-23 23:03:3558 TextInputClientMsgStart,
59 ChromeUtilityMsgStart,
60 MediaStreamMsgStart,
61 ChromeBenchmarkingMsgStart,
62 IntentsMsgStart,
63 JavaBridgeMsgStart,
64 GamepadMsgStart,
65 ShellMsgStart,
66 AccessibilityMsgStart,
67 PrerenderMsgStart,
68 ChromotingMsgStart,
69 OldBrowserPluginMsgStart,
70 BrowserPluginMsgStart,
71 HyphenatorMsgStart,
72 AndroidWebViewMsgStart,
73 MetroViewerMsgStart,
74 CCMsgStart,
75 MediaPlayerMsgStart,
[email protected]92fe6102012-12-08 01:55:0776 TracingMsgStart,
[email protected]af089972013-01-10 04:04:4077 PeerConnectionTrackerMsgStart,
[email protected]1f371fa2013-01-23 00:35:1478 VisitedLinkMsgStart,
[email protected]b6b15bcc2013-02-01 05:34:2579 OneClickSigninMsgStart,
[email protected]acd2121c2013-03-18 05:54:5080 AppShimMsgStart,
[email protected]1352ca92013-04-30 02:30:2781 ValidationMessageMsgStart,
[email protected]fc8638a2013-04-18 09:17:0282 WebRtcLoggingMsgStart,
[email protected]7a06d282013-05-03 04:39:3383 TtsMsgStart,
[email protected]a70ed8b32013-05-24 15:16:3484 MemoryBenchmarkMsgStart,
[email protected]e83ab822013-06-11 17:16:2285 WebSocketMsgStart,
[email protected]f9509812012-10-23 23:03:3586 LastIPCMsgStart // Must come last.
87};
88
89#endif // IPC_IPC_MESSAGE_START_H_