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
,
34 SpeechRecognitionMsgStart
,
47 DeviceOrientationMsgStart
,
48 DesktopNotificationMsgStart
,
60 TextInputClientMsgStart
,
61 ChromeUtilityMsgStart
,
63 ChromeBenchmarkingMsgStart
,
68 AccessibilityMsgStart
,
71 OldBrowserPluginMsgStart
,
72 BrowserPluginMsgStart
,
74 AndroidWebViewMsgStart
,
79 PeerConnectionTrackerMsgStart
,
81 OneClickSigninMsgStart
,
83 ValidationMessageMsgStart
,
84 WebRtcLoggingMsgStart
,
86 MemoryBenchmarkMsgStart
,
89 WebRTCIdentityMsgStart
,
90 LocalDiscoveryMsgStart
,
92 EncryptedMediaMsgStart
,
93 ServiceWorkerMsgStart
,
95 EmbeddedWorkerMsgStart
,
96 EmbeddedWorkerContextMsgStart
,
99 ScreenOrientationMsgStart
,
100 MediaStreamTrackMetricsHostMsgStart
,
101 ChromeExtensionMsgStart
,
104 PushMessagingMsgStart
,
105 GinJavaBridgeMsgStart
,
106 BatteryStatusMsgStart
,
107 LastIPCMsgStart
// Must come last.
110 #endif // IPC_IPC_MESSAGE_START_H_