| OLD | NEW |
| (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() {} |
| OLD | NEW |