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

Unified Diff: ipc/ipc_message_unittest.cc

Issue 292443004: Remove IPC_BEGIN_MESSAGE_MAP_EX macro since r270839 made all bad IPCs kill their child processes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 7 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') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_message_unittest.cc
===================================================================
--- ipc/ipc_message_unittest.cc (revision 271040)
+++ ipc/ipc_message_unittest.cc (working copy)
@@ -88,10 +88,9 @@
IPCMessageParameterTest() : extra_param_("extra_param"), called_(false) {}
bool OnMessageReceived(const IPC::Message& message) {
- bool msg_is_ok = true;
bool handled = true;
IPC_BEGIN_MESSAGE_MAP_WITH_PARAM(IPCMessageParameterTest, message,
- msg_is_ok, &extra_param_)
+ &extra_param_)
IPC_MESSAGE_HANDLER(TestMsgClassEmpty, OnEmpty)
IPC_MESSAGE_HANDLER(TestMsgClassI, OnInt)
//IPC_MESSAGE_HANDLER(TestMsgClassIS, OnSync)
« no previous file with comments | « ipc/ipc_message_macros.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698