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
,
46 DeviceOrientationMsgStart
,
56 TextInputClientMsgStart
,
57 ChromeUtilityMsgStart
,
59 ChromeBenchmarkingMsgStart
,
63 AccessibilityMsgStart
,
67 BrowserPluginMsgStart
,
68 AndroidWebViewMsgStart
,
73 PeerConnectionTrackerMsgStart
,
76 WebRtcLoggingMsgStart
,
78 MemoryBenchmarkMsgStart
,
81 WebRTCIdentityMsgStart
,
82 LocalDiscoveryMsgStart
,
84 EncryptedMediaMsgStart
,
86 ServiceWorkerMsgStart
,
88 EmbeddedWorkerMsgStart
,
89 EmbeddedWorkerContextMsgStart
,
92 ScreenOrientationMsgStart
,
93 MediaStreamTrackMetricsHostMsgStart
,
94 ChromeExtensionMsgStart
,
97 CldDataProviderMsgStart
,
98 PushMessagingMsgStart
,
99 GinJavaBridgeMsgStart
,
100 ChromeUtilityPrintingMsgStart
,
103 ChromeUtilityExtensionsMsgStart
,
104 PlatformNotificationMsgStart
,
105 CredentialManagerMsgStart
,
108 ManifestManagerMsgStart
,
109 ExtensionUtilityMsgStart
,
112 NetworkHintsMsgStart
,
115 AwMessagePortMsgStart
,
116 ExtensionsGuestViewMsgStart
,
118 // Note: CastCryptoMsgStart and CastChannelMsgStart reserved for Chromecast
119 // internal code. Contact gunsch@ before changing/removing.
122 DataReductionProxyStart
,
123 ContentSettingsMsgStart
,
124 ChromeAppBannerMsgStart
,
125 SafeJsonParserMsgStart
,
126 AttachmentBrokerMsgStart
,
127 LastIPCMsgStart
// Must come last.
130 #endif // IPC_IPC_MESSAGE_START_H_