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. |