Commit f8893079 authored by piman@google.com's avatar piman@google.com

Fix raw key down events in Pepper.

BUG=chromium-os:18815
TEST=Pepper Flash in full-screen

Review URL: http://codereview.chromium.org/7599009

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95930 0039d316-1c4b-4281-b951-d872f2087c98
parent eb4b8b47
......@@ -210,6 +210,7 @@ PP_Bool IsKeyboardInputEvent(PP_Resource resource) {
PP_InputEvent_Type type = GetType(resource);
return PP_FromBool(type == PP_INPUTEVENT_TYPE_KEYDOWN ||
type == PP_INPUTEVENT_TYPE_KEYUP ||
type == PP_INPUTEVENT_TYPE_RAWKEYDOWN ||
type == PP_INPUTEVENT_TYPE_CHAR);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment