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,
17 PluginProcessMsgStart
,
18 ProfileImportMsgStart
,
27 FirefoxImporterUnittestMsgStart
,
28 FileUtilitiesMsgStart
,
33 SpeechRecognitionMsgStart
,
47 DeviceOrientationMsgStart
,
59 TextInputClientMsgStart
,
60 ChromeUtilityMsgStart
,
62 ChromeBenchmarkingMsgStart
,
66 AccessibilityMsgStart
,
70 BrowserPluginMsgStart
,
71 AndroidWebViewMsgStart
,
76 PeerConnectionTrackerMsgStart
,
79 WebRtcLoggingMsgStart
,
81 MemoryBenchmarkMsgStart
,
84 WebRTCIdentityMsgStart
,
85 LocalDiscoveryMsgStart
,
87 EncryptedMediaMsgStart
,
88 ServiceWorkerMsgStart
,
90 EmbeddedWorkerMsgStart
,
91 EmbeddedWorkerContextMsgStart
,
94 ScreenOrientationMsgStart
,
95 MediaStreamTrackMetricsHostMsgStart
,
96 ChromeExtensionMsgStart
,
99 CldDataProviderMsgStart
,
100 PushMessagingMsgStart
,
101 GinJavaBridgeMsgStart
,
102 BatteryStatusMsgStart
,
103 ChromeUtilityPrintingMsgStart
,
106 ChromeUtilityExtensionsMsgStart
,
107 PlatformNotificationMsgStart
,
108 CredentialManagerMsgStart
,
111 ManifestManagerMsgStart
,
112 ExtensionUtilityMsgStart
,
117 NavigatorConnectMsgStart
,
119 LastIPCMsgStart
// Must come last.
122 #endif // IPC_IPC_MESSAGE_START_H_