Chromium Code Reviews| Index: chrome/browser/views/find_bar_host.cc |
| =================================================================== |
| --- chrome/browser/views/find_bar_host.cc (revision 26955) |
| +++ chrome/browser/views/find_bar_host.cc (working copy) |
| @@ -355,6 +355,11 @@ |
| bool FindBarHost::MaybeForwardKeystrokeToWebpage( |
| const views::Textfield::Keystroke& key_stroke) { |
| + if (!ShouldForwardKeystrokeToWebpageNative(key_stroke)) { |
| + // Native implementation not to forward these events. |
|
Finnur
2009/09/23 22:21:40
nit: not -> says not ?
|
| + return false; |
| + } |
| + |
| switch (key_stroke.GetKeyboardCode()) { |
| case base::VKEY_DOWN: |
| case base::VKEY_UP: |