forked from sanyaade-mobiledev/chromium.src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move IPCMessageStart enum into it own file with security team OWNERS,…
… so that new message files can't be added to chromium without triggering a security review. Review URL: https://chromiumcodereview.appspot.com/11048038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163713 0039d316-1c4b-4281-b951-d872f2087c98
- Loading branch information
tsepez@chromium.org
committed
Oct 23, 2012
1 parent
cd5fff7
commit f950981
Showing
6 changed files
with
95 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// Copyright 2012 The Chromium Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
#ifndef IPC_IPC_MESSAGE_START_H_ | ||
#define IPC_IPC_MESSAGE_START_H_ | ||
|
||
// Used by IPC_BEGIN_MESSAGES so that each message class starts from a unique | ||
// base. Messages have unique IDs across channels in order for the IPC logging | ||
// code to figure out the message class from its ID. | ||
enum IPCMessageStart { | ||
AutomationMsgStart = 0, | ||
ViewMsgStart, | ||
PluginMsgStart, | ||
ProfileImportMsgStart, | ||
TestMsgStart, | ||
DevToolsMsgStart, | ||
WorkerMsgStart, | ||
NaClMsgStart, | ||
UtilityMsgStart, | ||
GpuMsgStart, | ||
ServiceMsgStart, | ||
PpapiMsgStart, | ||
FirefoxImporterUnittestMsgStart, | ||
FileUtilitiesMsgStart, | ||
MimeRegistryMsgStart, | ||
DatabaseMsgStart, | ||
DOMStorageMsgStart, | ||
IndexedDBMsgStart, | ||
PepperFileMsgStart, | ||
SpeechRecognitionMsgStart, | ||
PepperMsgStart, | ||
AutofillMsgStart, | ||
SafeBrowsingMsgStart, | ||
P2PMsgStart, | ||
SocketStreamMsgStart, | ||
ResourceMsgStart, | ||
FileSystemMsgStart, | ||
ChildProcessMsgStart, | ||
ClipboardMsgStart, | ||
BlobMsgStart, | ||
AppCacheMsgStart, | ||
DeviceMotionMsgStart, | ||
DeviceOrientationMsgStart, | ||
DesktopNotificationMsgStart, | ||
GeolocationMsgStart, | ||
AudioMsgStart, | ||
ChromeMsgStart, | ||
DragMsgStart, | ||
PrintMsgStart, | ||
SpellCheckMsgStart, | ||
ExtensionMsgStart, | ||
VideoCaptureMsgStart, | ||
QuotaMsgStart, | ||
IconMsgStart, | ||
TextInputClientMsgStart, | ||
ChromeUtilityMsgStart, | ||
MediaStreamMsgStart, | ||
ChromeBenchmarkingMsgStart, | ||
IntentsMsgStart, | ||
JavaBridgeMsgStart, | ||
GamepadMsgStart, | ||
ShellMsgStart, | ||
AccessibilityMsgStart, | ||
PrerenderMsgStart, | ||
ChromotingMsgStart, | ||
OldBrowserPluginMsgStart, | ||
BrowserPluginMsgStart, | ||
HyphenatorMsgStart, | ||
AndroidWebViewMsgStart, | ||
MetroViewerMsgStart, | ||
CCMsgStart, | ||
MediaPlayerMsgStart, | ||
LastIPCMsgStart // Must come last. | ||
}; | ||
|
||
#endif // IPC_IPC_MESSAGE_START_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters