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,
16 PluginProcessMsgStart
,
17 ProfileImportMsgStart
,
26 FirefoxImporterUnittestMsgStart
,
27 FileUtilitiesMsgStart
,
33 SpeechRecognitionMsgStart
,
46 DeviceOrientationMsgStart
,
47 DesktopNotificationMsgStart
,
59 TextInputClientMsgStart
,
60 ChromeUtilityMsgStart
,
62 ChromeBenchmarkingMsgStart
,
67 AccessibilityMsgStart
,
70 OldBrowserPluginMsgStart
,
71 BrowserPluginMsgStart
,
73 AndroidWebViewMsgStart
,
78 PeerConnectionTrackerMsgStart
,
80 OneClickSigninMsgStart
,
82 ValidationMessageMsgStart
,
83 WebRtcLoggingMsgStart
,
85 MemoryBenchmarkMsgStart
,
88 WebRTCIdentityMsgStart
,
89 LocalDiscoveryMsgStart
,
91 LastIPCMsgStart
// Must come last.
94 #endif // IPC_IPC_MESSAGE_START_H_