| Index: chrome/browser/ui/views/find_bar_host.cc
|
| diff --git a/chrome/browser/ui/views/find_bar_host.cc b/chrome/browser/ui/views/find_bar_host.cc
|
| index 5f51653a171ed0718a7f118a6ce0c0960462565b..1b34a5562bb612b46a8da33ea023bebd23903fcf 100644
|
| --- a/chrome/browser/ui/views/find_bar_host.cc
|
| +++ b/chrome/browser/ui/views/find_bar_host.cc
|
| @@ -62,7 +62,9 @@ bool FindBarHost::MaybeForwardKeyEventToWebpage(
|
| // input. Otherwise Up and Down arrow key strokes get eaten. "Nom Nom Nom".
|
| contents->ClearFocusedElement();
|
| NativeWebKeyboardEvent event(key_event);
|
| - contents->GetRenderViewHost()->GetWidget()->ForwardKeyboardEvent(event);
|
| + contents->GetRenderViewHost()
|
| + ->GetWidget()
|
| + ->ForwardKeyboardEventWithLatencyInfo(event, *key_event.latency());
|
| return true;
|
| }
|
|
|
|
|