diff options
author | sehr@google.com <sehr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-14 20:54:49 +0000 |
---|---|---|
committer | sehr@google.com <sehr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-14 20:54:49 +0000 |
commit | 4463e11f45d4f9d2131c726a220ee53dd99b4a5a (patch) | |
tree | 7161abfb63c31240695f24d2805f30adf41ba3f1 /third_party | |
parent | c101bed742b18dbc2a64f1f176cd8e063e2d9a29 (diff) | |
download | chromium_src-4463e11f45d4f9d2131c726a220ee53dd99b4a5a.zip chromium_src-4463e11f45d4f9d2131c726a220ee53dd99b4a5a.tar.gz chromium_src-4463e11f45d4f9d2131c726a220ee53dd99b4a5a.tar.bz2 |
Hooked up the WebInputEvent data structure to the webplugin_delegate
interface for passing events to the module. Slightly tweaked the
definition of keyboard events from Nicholas' specification because
the characters have become wchar_t.
Review URL: http://codereview.chromium.org/266054
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29023 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/npapi/bindings/npapi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/npapi/bindings/npapi.h b/third_party/npapi/bindings/npapi.h index aac35e3..ed886fe 100644 --- a/third_party/npapi/bindings/npapi.h +++ b/third_party/npapi/bindings/npapi.h @@ -793,8 +793,8 @@ typedef struct _NPKeyEvent typedef struct _NPCharacterEvent { uint32 modifier; - uint32 text; - uint32 unmodifiedText; + uint16 text[4]; + uint16 unmodifiedText[4]; } NPCharacterEvent; typedef struct _NPMouseEvent |