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
,
48 DesktopNotificationMsgStart
,
60 TextInputClientMsgStart
,
61 ChromeUtilityMsgStart
,
63 ChromeBenchmarkingMsgStart
,
67 AccessibilityMsgStart
,
71 BrowserPluginMsgStart
,
72 AndroidWebViewMsgStart
,
77 PeerConnectionTrackerMsgStart
,
80 WebRtcLoggingMsgStart
,
82 MemoryBenchmarkMsgStart
,
85 WebRTCIdentityMsgStart
,
86 LocalDiscoveryMsgStart
,
88 EncryptedMediaMsgStart
,
89 ServiceWorkerMsgStart
,
91 EmbeddedWorkerMsgStart
,
92 EmbeddedWorkerContextMsgStart
,
95 ScreenOrientationMsgStart
,
96 MediaStreamTrackMetricsHostMsgStart
,
97 ChromeExtensionMsgStart
,
100 CldDataProviderMsgStart
,
101 PushMessagingMsgStart
,
102 GinJavaBridgeMsgStart
,
103 BatteryStatusMsgStart
,
104 ChromeUtilityPrintingMsgStart
,
107 ChromeUtilityExtensionsMsgStart
,
108 PlatformNotificationMsgStart
,
109 CredentialManagerMsgStart
,
112 ManifestManagerMsgStart
,
113 ExtensionUtilityMsgStart
,
115 LastIPCMsgStart
// Must come last.
118 #endif // IPC_IPC_MESSAGE_START_H_