find_bar_host_aura.cc revision d0247b1b59f9c528cb6df88b4f2b9afaf80d181e
1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome/browser/ui/views/find_bar_host.h"
6
7#include "base/logging.h"
8#include "ui/events/event.h"
9
10void FindBarHost::AudibleAlert() {
11#if defined(OS_WIN)
12  MessageBeep(MB_OK);
13#endif
14}
15
16bool FindBarHost::ShouldForwardKeyEventToWebpageNative(
17    const ui::KeyEvent& key_event) {
18  return true;
19}
20