Add a minor text member to ui::MenuModel.
[chromium-blink-merge.git] / chrome / browser / ui / views / find_bar_host_aura.cc
blob9331c92f8eb934edc16c8e4694deedde6287e414
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.
5 #include "chrome/browser/ui/views/find_bar_host.h"
7 #include "base/logging.h"
8 #include "ui/base/events/event.h"
10 void FindBarHost::AudibleAlert() {
11 #if defined(OS_WIN)
12 MessageBeep(MB_OK);
13 #else
14 // TODO(mukai):
15 NOTIMPLEMENTED();
16 #endif
19 bool FindBarHost::ShouldForwardKeyEventToWebpageNative(
20 const ui::KeyEvent& key_event) {
21 return true;