Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Side by Side Diff: chrome/browser/ui/cocoa/location_bar/mic_search_decoration.mm

Issue 1428423002: Remove setVoiceSearchSupported part of EmbeddedSearch SearchBox API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mac fix Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2013 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 #import "chrome/browser/ui/cocoa/location_bar/mic_search_decoration.h"
6
7 #include "chrome/app/chrome_command_ids.h"
8 #include "chrome/browser/command_updater.h"
9 #import "chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.h"
10 #include "chrome/grit/generated_resources.h"
11 #include "grit/theme_resources.h"
12 #include "ui/base/l10n/l10n_util_mac.h"
13
14 MicSearchDecoration::MicSearchDecoration(CommandUpdater* command_updater)
15 : command_updater_(command_updater) {
16 SetImage(OmniboxViewMac::ImageForResource(IDR_OMNIBOX_MIC_SEARCH));
17 }
18
19 MicSearchDecoration::~MicSearchDecoration() {
20 }
21
22 bool MicSearchDecoration::AcceptsMousePress() {
23 return true;
24 }
25
26 bool MicSearchDecoration::OnMousePressed(NSRect frame, NSPoint location) {
27 command_updater_->ExecuteCommand(IDC_TOGGLE_SPEECH_INPUT);
28 return true;
29 }
30
31 NSString* MicSearchDecoration::GetToolTip() {
32 return l10n_util::GetNSStringWithFixup(IDS_TOOLTIP_MIC_SEARCH);
33 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/location_bar/mic_search_decoration.h ('k') | chrome/browser/ui/cocoa/view_id_util_browsertest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698