Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(532)

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_section_container.mm

Issue 100903003: [rAC, OSX] Fix key handling for autofill popup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/autofill/autofill_section_container.mm
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_section_container.mm b/chrome/browser/ui/cocoa/autofill/autofill_section_container.mm
index e410eb13630fd4ef10aa646e4d8691e2da40364d..89f6da359b91e1b07058558133d0d426eb5685de 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_section_container.mm
+++ b/chrome/browser/ui/cocoa/autofill/autofill_section_container.mm
@@ -256,7 +256,7 @@ bool CompareInputRows(const autofill::DetailInput* input1,
content::NativeWebKeyboardEvent webEvent(event);
// Only handle keyDown, to handle key repeats without duplicates.
- if (webEvent.type != content::NativeWebKeyboardEvent::KeyDown)
+ if (webEvent.type != content::NativeWebKeyboardEvent::RawKeyDown)
return kKeyEventNotHandled;
// Allow the delegate to intercept key messages.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698