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

Side by Side Diff: ipc/ipc_message_start.h

Issue 358023002: Remove unused IPC_MESSAGE_START enum constants. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IPC_IPC_MESSAGE_START_H_ 5 #ifndef IPC_IPC_MESSAGE_START_H_
6 #define IPC_IPC_MESSAGE_START_H_ 6 #define IPC_IPC_MESSAGE_START_H_
7 7
8 // Used by IPC_BEGIN_MESSAGES so that each message class starts from a unique 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 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. 10 // code to figure out the message class from its ID.
(...skipping 12 matching lines...) Expand all
23 UtilityMsgStart, 23 UtilityMsgStart,
24 GpuMsgStart, 24 GpuMsgStart,
25 ServiceMsgStart, 25 ServiceMsgStart,
26 PpapiMsgStart, 26 PpapiMsgStart,
27 FirefoxImporterUnittestMsgStart, 27 FirefoxImporterUnittestMsgStart,
28 FileUtilitiesMsgStart, 28 FileUtilitiesMsgStart,
29 MimeRegistryMsgStart, 29 MimeRegistryMsgStart,
30 DatabaseMsgStart, 30 DatabaseMsgStart,
31 DOMStorageMsgStart, 31 DOMStorageMsgStart,
32 IndexedDBMsgStart, 32 IndexedDBMsgStart,
33 PepperFileMsgStart,
34 SpeechRecognitionMsgStart, 33 SpeechRecognitionMsgStart,
35 PepperMsgStart, 34 PepperMsgStart,
36 AutofillMsgStart, 35 AutofillMsgStart,
37 SafeBrowsingMsgStart, 36 SafeBrowsingMsgStart,
38 P2PMsgStart, 37 P2PMsgStart,
39 SocketStreamMsgStart, 38 SocketStreamMsgStart,
40 ResourceMsgStart, 39 ResourceMsgStart,
41 FileSystemMsgStart, 40 FileSystemMsgStart,
42 ChildProcessMsgStart, 41 ChildProcessMsgStart,
43 ClipboardMsgStart, 42 ClipboardMsgStart,
(...skipping 10 matching lines...) Expand all
54 PrintMsgStart, 53 PrintMsgStart,
55 SpellCheckMsgStart, 54 SpellCheckMsgStart,
56 ExtensionMsgStart, 55 ExtensionMsgStart,
57 VideoCaptureMsgStart, 56 VideoCaptureMsgStart,
58 QuotaMsgStart, 57 QuotaMsgStart,
59 ImageMsgStart, 58 ImageMsgStart,
60 TextInputClientMsgStart, 59 TextInputClientMsgStart,
61 ChromeUtilityMsgStart, 60 ChromeUtilityMsgStart,
62 MediaStreamMsgStart, 61 MediaStreamMsgStart,
63 ChromeBenchmarkingMsgStart, 62 ChromeBenchmarkingMsgStart,
64 IntentsMsgStart,
65 JavaBridgeMsgStart, 63 JavaBridgeMsgStart,
66 GamepadMsgStart, 64 GamepadMsgStart,
67 ShellMsgStart, 65 ShellMsgStart,
68 AccessibilityMsgStart, 66 AccessibilityMsgStart,
69 PrefetchMsgStart, 67 PrefetchMsgStart,
70 PrerenderMsgStart, 68 PrerenderMsgStart,
71 ChromotingMsgStart, 69 ChromotingMsgStart,
72 OldBrowserPluginMsgStart,
73 BrowserPluginMsgStart, 70 BrowserPluginMsgStart,
74 HyphenatorMsgStart,
75 AndroidWebViewMsgStart, 71 AndroidWebViewMsgStart,
76 MetroViewerMsgStart, 72 MetroViewerMsgStart,
77 CCMsgStart, 73 CCMsgStart,
78 MediaPlayerMsgStart, 74 MediaPlayerMsgStart,
79 TracingMsgStart, 75 TracingMsgStart,
80 PeerConnectionTrackerMsgStart, 76 PeerConnectionTrackerMsgStart,
81 VisitedLinkMsgStart, 77 VisitedLinkMsgStart,
82 OneClickSigninMsgStart,
83 AppShimMsgStart, 78 AppShimMsgStart,
84 ValidationMessageMsgStart,
85 WebRtcLoggingMsgStart, 79 WebRtcLoggingMsgStart,
86 TtsMsgStart, 80 TtsMsgStart,
87 MemoryBenchmarkMsgStart, 81 MemoryBenchmarkMsgStart,
88 WebSocketMsgStart, 82 WebSocketMsgStart,
89 NaClHostMsgStart, 83 NaClHostMsgStart,
90 WebRTCIdentityMsgStart, 84 WebRTCIdentityMsgStart,
91 LocalDiscoveryMsgStart, 85 LocalDiscoveryMsgStart,
92 PowerMonitorMsgStart, 86 PowerMonitorMsgStart,
93 EncryptedMediaMsgStart, 87 EncryptedMediaMsgStart,
94 ServiceWorkerMsgStart, 88 ServiceWorkerMsgStart,
(...skipping 11 matching lines...) Expand all
106 PushMessagingMsgStart, 100 PushMessagingMsgStart,
107 GinJavaBridgeMsgStart, 101 GinJavaBridgeMsgStart,
108 BatteryStatusMsgStart, 102 BatteryStatusMsgStart,
109 UtilityPrintingMsgStart, 103 UtilityPrintingMsgStart,
110 AecDumpMsgStart, 104 AecDumpMsgStart,
111 OzoneGpuMsgStart, 105 OzoneGpuMsgStart,
112 LastIPCMsgStart // Must come last. 106 LastIPCMsgStart // Must come last.
113 }; 107 };
114 108
115 #endif // IPC_IPC_MESSAGE_START_H_ 109 #endif // IPC_IPC_MESSAGE_START_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698