diff options
author | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-14 18:56:44 +0000 |
---|---|---|
committer | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-14 18:56:44 +0000 |
commit | f7fe6ec7d7442bfaaa0c7f640fc27b561010b668 (patch) | |
tree | 6efcd4f12af568f4bfea7f21bf13b76324ddb881 /ui | |
parent | aa169a5c0466adfaacab6d9a564152fc8dd07334 (diff) | |
download | chromium_src-f7fe6ec7d7442bfaaa0c7f640fc27b561010b668.zip chromium_src-f7fe6ec7d7442bfaaa0c7f640fc27b561010b668.tar.gz chromium_src-f7fe6ec7d7442bfaaa0c7f640fc27b561010b668.tar.bz2 |
Space key doesn't work in AURA enabled build because in case of space key,
WebInputEvent::Char event is not sent to WebKit.
TBR=sky@chromium.org
BUG=103753
TEST=Load a html page with a text box and check if space key works.
Review URL: http://codereview.chromium.org/8461004
Patch from Amruth Raj <ckqr36@motorola.com>.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109918 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui')
-rw-r--r-- | ui/aura/desktop_host_linux.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/aura/desktop_host_linux.cc b/ui/aura/desktop_host_linux.cc index adfd712..17cacb8 100644 --- a/ui/aura/desktop_host_linux.cc +++ b/ui/aura/desktop_host_linux.cc @@ -195,6 +195,7 @@ bool ShouldSendCharEventForKeyboardCode(ui::KeyboardCode keycode) { case ui::VKEY_BACK: case ui::VKEY_RETURN: case ui::VKEY_ESCAPE: + case ui::VKEY_SPACE: case ui::VKEY_TAB: // In addition to the keys listed at MSDN, we include other // graphic-character and numpad keys. |