Added policy for disabling locally managed users.
[chromium-blink-merge.git] / ipc / ipc_message_start.h
blob8226bc1abe39289ab024cb949bdfe36ed5f9aa1e
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
3 // found in the LICENSE file.
5 #ifndef IPC_IPC_MESSAGE_START_H_
6 #define IPC_IPC_MESSAGE_START_H_
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.
11 enum IPCMessageStart {
12 AutomationMsgStart = 0,
13 ViewMsgStart,
14 InputMsgStart,
15 PluginMsgStart,
16 PluginProcessMsgStart,
17 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,
57 ImageMsgStart,
58 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,
76 TracingMsgStart,
77 PeerConnectionTrackerMsgStart,
78 VisitedLinkMsgStart,
79 OneClickSigninMsgStart,
80 AppShimMsgStart,
81 ValidationMessageMsgStart,
82 WebRtcLoggingMsgStart,
83 TtsMsgStart,
84 MemoryBenchmarkMsgStart,
85 WebSocketMsgStart,
86 NaClHostMsgStart,
87 LastIPCMsgStart // Must come last.
90 #endif // IPC_IPC_MESSAGE_START_H_