| 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 cdec6d827671889443ce4be7aeeb8c39893b1c0d..36604228e7fc3750f0d461d2629c898f623d2907 100644
|
| --- a/chrome/browser/ui/views/find_bar_host.cc
|
| +++ b/chrome/browser/ui/views/find_bar_host.cc
|
| @@ -46,11 +46,6 @@ FindBarHost::~FindBarHost() {
|
|
|
| bool FindBarHost::MaybeForwardKeyEventToWebpage(
|
| const ui::KeyEvent& key_event) {
|
| - if (!ShouldForwardKeyEventToWebpageNative(key_event)) {
|
| - // Native implementation says not to forward these events.
|
| - return false;
|
| - }
|
| -
|
| switch (key_event.key_code()) {
|
| case ui::VKEY_DOWN:
|
| case ui::VKEY_UP:
|
| @@ -161,6 +156,12 @@ void FindBarHost::UpdateUIForFindResult(const FindNotificationDetails& result,
|
| ResetFocusTracker();
|
| }
|
|
|
| +void FindBarHost::AudibleAlert() {
|
| +#if defined(OS_WIN)
|
| + MessageBeep(MB_OK);
|
| +#endif
|
| +}
|
| +
|
| bool FindBarHost::IsFindBarVisible() {
|
| return DropdownBarHost::IsVisible();
|
| }
|
|
|