Home | History | Annotate | Download | only in views
      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 
     10 void FindBarHost::AudibleAlert() {
     11 #if defined(OS_WIN)
     12   MessageBeep(MB_OK);
     13 #endif
     14 }
     15 
     16 bool FindBarHost::ShouldForwardKeyEventToWebpageNative(
     17     const ui::KeyEvent& key_event) {
     18   return true;
     19 }
     20