From 1e927691dcc9f65d82aafc0f89af086048b945f3 Mon Sep 17 00:00:00 2001 From: "phajdan.jr@chromium.org" Date: Thu, 31 Mar 2011 09:55:58 +0000 Subject: GTTF: Make automation provider recognize more IPC error conditions 1) Report IPC message deserialization errors in "delay reply" handlers. 2) Handle those errors in automation provider. BUG=77875 Review URL: http://codereview.chromium.org/6675047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79980 0039d316-1c4b-4281-b951-d872f2087c98 --- ipc/ipc_message_macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipc/ipc_message_macros.h') diff --git a/ipc/ipc_message_macros.h b/ipc/ipc_message_macros.h index 0320aaa..87e9c20 100644 --- a/ipc/ipc_message_macros.h +++ b/ipc/ipc_message_macros.h @@ -730,7 +730,7 @@ LogFunctionMap g_log_function_mapping; #define IPC_MESSAGE_FORWARD_DELAY_REPLY(msg_class, obj, member_func) \ case msg_class::ID: \ - msg_class::DispatchDelayReply(&ipc_message__, obj, &member_func); \ + msg_is_ok__ = msg_class::DispatchDelayReply(&ipc_message__, obj, &member_func); \ break; #define IPC_MESSAGE_HANDLER_DELAY_REPLY(msg_class, member_func) \ -- cgit v1.1