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

Unified Diff: tools/ipc_fuzzer/ipclist/ipclist.cc

Issue 848453003: Ipclist fixes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing DEPS entry Created 5 years, 11 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_start.h ('k') | tools/ipc_fuzzer/message_lib/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ipc_fuzzer/ipclist/ipclist.cc
diff --git a/tools/ipc_fuzzer/ipclist/ipclist.cc b/tools/ipc_fuzzer/ipclist/ipclist.cc
index 6212f7d5f0aade54fea9bcc67ea29b77b49801b2..6e533a2aa39818d5e3ae5008935e3c8c36390d2b 100644
--- a/tools/ipc_fuzzer/ipclist/ipclist.cc
+++ b/tools/ipc_fuzzer/ipclist/ipclist.cc
@@ -53,6 +53,14 @@ static bool check_msgtable() {
exemptions.push_back(MetroViewerMsgStart);
exemptions.push_back(CCMsgStart); // Nothing but param traits.
exemptions.push_back(CldDataProviderMsgStart); // Conditional build.
+
+ // Sent from browser to renderer.
+ exemptions.push_back(WebCacheMsgStart);
+
+#if defined(DISABLE_NACL)
+ exemptions.push_back(NaClMsgStart);
+#endif // defined(DISABLE_NACL)
+
#if !defined(OS_ANDROID)
exemptions.push_back(JavaBridgeMsgStart);
exemptions.push_back(MediaPlayerMsgStart);
@@ -60,6 +68,11 @@ static bool check_msgtable() {
exemptions.push_back(GinJavaBridgeMsgStart);
exemptions.push_back(AndroidWebViewMsgStart);
#endif // !defined(OS_ANDROID)
+
+#if !defined(OS_POSIX)
+ exemptions.push_back(CastMediaMsgStart); // FIXME: Add support for types.
+#endif // !defined(OS_POSIX)
+
#if !defined(USE_OZONE)
exemptions.push_back(OzoneGpuMsgStart);
#endif // !defined(USE_OZONE)
« no previous file with comments | « ipc/ipc_message_start.h ('k') | tools/ipc_fuzzer/message_lib/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698