From: Sanghyup Lee Date: Mon, 4 Sep 2017 02:25:31 +0000 (+0000) Subject: Do not handle ViewHostMsg_SetCursor in WebContents X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=371bbe24d223b2d8e2c49a2ec1ec57e690b8e8ff;p=platform%2Fframework%2Fweb%2Fcrosswalk-tizen.git Do not handle ViewHostMsg_SetCursor in WebContents Due to stach_chk_fail crash. Change-Id: I91b5d52e341fab1f1ae95d78c996ba181bfbdd9b Signed-off-by: Sanghyup Lee --- diff --git a/atom/browser/api/atom_api_web_contents.cc b/atom/browser/api/atom_api_web_contents.cc index fc3a55901..8c473c5a0 100644 --- a/atom/browser/api/atom_api_web_contents.cc +++ b/atom/browser/api/atom_api_web_contents.cc @@ -907,8 +907,10 @@ bool WebContents::OnMessageReceived(const IPC::Message& message) { OnSetTemporaryZoomLevel) IPC_MESSAGE_HANDLER_DELAY_REPLY(AtomViewHostMsg_GetZoomLevel, OnGetZoomLevel) - IPC_MESSAGE_HANDLER_CODE(ViewHostMsg_SetCursor, OnCursorChange, - handled = false) + + // FIXME: Disable OnCursorChange due to stach_chk_fail crash. + // IPC_MESSAGE_HANDLER_CODE(ViewHostMsg_SetCursor, OnCursorChange, + // handled = false) IPC_MESSAGE_UNHANDLED(handled = false) IPC_END_MESSAGE_MAP()