Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: ipc/ipc_message_start.h

Issue 11048038: Move IPCMessageStart enum into it own directory with security team OWNERS, so that new message file… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ipc/ipc_message_macros.h ('k') | ipc/ipc_message_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_message_start.h
===================================================================
--- ipc/ipc_message_start.h (revision 0)
+++ ipc/ipc_message_start.h (revision 0)
@@ -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_
Property changes on: ipc/ipc_message_start.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « ipc/ipc_message_macros.h ('k') | ipc/ipc_message_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698