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,
15 ProfileImportMsgStart
,
24 FirefoxImporterUnittestMsgStart
,
25 FileUtilitiesMsgStart
,
31 SpeechRecognitionMsgStart
,
44 DeviceOrientationMsgStart
,
45 DesktopNotificationMsgStart
,
56 TextInputClientMsgStart
,
57 ChromeUtilityMsgStart
,
59 ChromeBenchmarkingMsgStart
,
64 AccessibilityMsgStart
,
67 OldBrowserPluginMsgStart
,
68 BrowserPluginMsgStart
,
70 AndroidWebViewMsgStart
,
75 PeerConnectionTrackerMsgStart
,
77 OneClickSigninMsgStart
,
78 LastIPCMsgStart
// Must come last.
81 #endif // IPC_IPC_MESSAGE_START_H_