Commit e9ec1dc3 authored by yusukes@chromium.org's avatar yusukes@chromium.org

Do not consume an ET_KEY_RELEASED event in NativeTextfieldViews and...

Do not consume an ET_KEY_RELEASED event in NativeTextfieldViews and NativeComboboxViews so FocusManager could process an ET_KEY_RELEASED accelerator.

BUG=127520,123856
TEST=try

Review URL: https://chromiumcodereview.appspot.com/10389035

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137164 0039d316-1c4b-4281-b951-d872f2087c98
parent 10848bb9
...@@ -221,7 +221,7 @@ bool NativeComboboxViews::HandleKeyPressed(const KeyEvent& e) { ...@@ -221,7 +221,7 @@ bool NativeComboboxViews::HandleKeyPressed(const KeyEvent& e) {
} }
bool NativeComboboxViews::HandleKeyReleased(const KeyEvent& e) { bool NativeComboboxViews::HandleKeyReleased(const KeyEvent& e) {
return true; return false; // crbug.com/127520
} }
void NativeComboboxViews::HandleFocus() { void NativeComboboxViews::HandleFocus() {
......
...@@ -494,7 +494,7 @@ bool NativeTextfieldViews::HandleKeyPressed(const KeyEvent& e) { ...@@ -494,7 +494,7 @@ bool NativeTextfieldViews::HandleKeyPressed(const KeyEvent& e) {
} }
bool NativeTextfieldViews::HandleKeyReleased(const KeyEvent& e) { bool NativeTextfieldViews::HandleKeyReleased(const KeyEvent& e) {
return true; return false; // crbug.com/127520
} }
void NativeTextfieldViews::HandleFocus() { void NativeTextfieldViews::HandleFocus() {
......
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