diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-31 09:55:58 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-31 09:55:58 +0000 |
commit | 1e927691dcc9f65d82aafc0f89af086048b945f3 (patch) | |
tree | 0469878b25e6aac0716f18f6f6e9857dac71cfd4 /ipc/ipc_message_macros.h | |
parent | d4a952f4cfa17e705d601761b7c4e10217915554 (diff) | |
download | chromium_src-1e927691dcc9f65d82aafc0f89af086048b945f3.zip chromium_src-1e927691dcc9f65d82aafc0f89af086048b945f3.tar.gz chromium_src-1e927691dcc9f65d82aafc0f89af086048b945f3.tar.bz2 |
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
Diffstat (limited to 'ipc/ipc_message_macros.h')
-rw-r--r-- | ipc/ipc_message_macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) \ |