From c370ea3e5e3da8cd3d5deaee79e7820976fb22af Mon Sep 17 00:00:00 2001 From: "apavlov@chromium.org" Date: Mon, 19 Dec 2011 10:10:36 +0000 Subject: Merge 113603 - Revert r112160 ("Send one WebKeyboardEvent to the RenderWidget at a time.") This change has resulted in severe regressions in keyboard event dispatching - the keydown and keypress events are no longer dispatched synchronously. Reverting as suggested by Darin Fisher. BUG=106224 TEST=manual TBR=darin Review URL: http://codereview.chromium.org/8885009 TBR=apavlov@chromium.org Review URL: http://codereview.chromium.org/8995002 git-svn-id: svn://svn.chromium.org/chrome/branches/963/src@114968 0039d316-1c4b-4281-b951-d872f2087c98 --- content/common/view_messages.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'content/common/view_messages.h') diff --git a/content/common/view_messages.h b/content/common/view_messages.h index 558d705..ea86707 100644 --- a/content/common/view_messages.h +++ b/content/common/view_messages.h @@ -746,7 +746,10 @@ IPC_MESSAGE_ROUTED4(ViewMsg_PaintAtSize, // This signals the render view that it can send another UpdateRect message. IPC_MESSAGE_ROUTED0(ViewMsg_UpdateRect_ACK) -// Message payload includes a blob that should be cast to WebInputEvent +// Message payload includes: +// 1. A blob that should be cast to WebInputEvent +// 2. An optional boolean value indicating if a RawKeyDown event is associated +// to a keyboard shortcut of the browser. IPC_MESSAGE_ROUTED0(ViewMsg_HandleInputEvent) // This message notifies the renderer that the next key event is bound to one -- cgit v1.1