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/base/events/event.h"
      9 
     10 void FindBarHost::AudibleAlert() {
     11 #if defined(OS_WIN)
     12   MessageBeep(MB_OK);
     13 #else
     14   // TODO(mukai):
     15   NOTIMPLEMENTED();
     16 #endif
     17 }
     18 
     19 bool FindBarHost::ShouldForwardKeyEventToWebpageNative(
     20     const ui::KeyEvent& key_event) {
     21   return true;
     22 }
     23