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

Side by Side Diff: ios/public/provider/chrome/browser/voice/voice_search_controller.mm

Issue 2453003002: [ios] Adds a VoiceSearchController interface to the provider layer. (Closed)
Patch Set: Rebased. Created 4 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 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 #import "ios/public/provider/chrome/browser/voice/voice_search_controller.h"
6
7 #import <UIKit/UIKit.h>
8
9 VoiceSearchController::VoiceSearchController() {}
10
11 VoiceSearchController::~VoiceSearchController() {}
12
13 void VoiceSearchController::SetDelegate(
14 id<VoiceSearchControllerDelegate> delegate) {}
15
16 void VoiceSearchController::PrepareToAppear() {}
17
18 void VoiceSearchController::StartRecognition(
19 UIViewController* presenting_view_controller,
20 Tab* current_tab) {}
21
22 bool VoiceSearchController::IsTextToSpeechEnabled() {
23 return false;
24 }
25
26 bool VoiceSearchController::IsTextToSpeechSupported() {
27 return false;
28 }
29
30 bool VoiceSearchController::IsVisible() {
31 return false;
32 }
33
34 bool VoiceSearchController::IsPlayingAudio() {
35 return false;
36 }
37
38 void VoiceSearchController::DismissMicPermissionsHelp() {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698