Commit aed5adc0 authored by groby@chromium.org's avatar groby@chromium.org

[rAC, OSX] Fix key handling for autofill popup.

BUG=323728
TEST=see bug
R=isherman@chromium.org

Review URL: https://codereview.chromium.org/100903003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238369 0039d316-1c4b-4281-b951-d872f2087c98
parent 5c3c6737
...@@ -259,7 +259,7 @@ bool CompareInputRows(const autofill::DetailInput* input1, ...@@ -259,7 +259,7 @@ bool CompareInputRows(const autofill::DetailInput* input1,
content::NativeWebKeyboardEvent webEvent(event); content::NativeWebKeyboardEvent webEvent(event);
// Only handle keyDown, to handle key repeats without duplicates. // Only handle keyDown, to handle key repeats without duplicates.
if (webEvent.type != content::NativeWebKeyboardEvent::KeyDown) if (webEvent.type != content::NativeWebKeyboardEvent::RawKeyDown)
return kKeyEventNotHandled; return kKeyEventNotHandled;
// Allow the delegate to intercept key messages. // Allow the delegate to intercept key messages.
......
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