| Index: chrome/browser/views/find_bar_host_win.cc
|
| ===================================================================
|
| --- chrome/browser/views/find_bar_host_win.cc (revision 26955)
|
| +++ chrome/browser/views/find_bar_host_win.cc (working copy)
|
| @@ -189,3 +189,9 @@
|
| return browser_view->GetWidget()->GetNativeView();
|
| }
|
|
|
| +bool FindBarHost::ShouldForwardKeystrokeToWebpageNative(
|
| + const views::Textfield::Keystroke& key_stroke) {
|
| + // We specifically ignore WM_CHAR. See http://crbug.com/10509.
|
| + return key_stroke.message() == WM_KEYDOWN || key_stroke.message() == WM_KEYUP;
|
| +}
|
| +
|
|
|