| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #import "ios/public/provider/chrome/browser/voice/voice_search_controller.h" | 5 #import "ios/public/provider/chrome/browser/voice/voice_search_controller.h" |
| 6 | 6 |
| 7 #import <UIKit/UIKit.h> | 7 #import <UIKit/UIKit.h> |
| 8 | 8 |
| 9 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 10 #error "This file requires ARC support." |
| 11 #endif |
| 12 |
| 9 VoiceSearchController::VoiceSearchController() {} | 13 VoiceSearchController::VoiceSearchController() {} |
| 10 | 14 |
| 11 VoiceSearchController::~VoiceSearchController() {} | 15 VoiceSearchController::~VoiceSearchController() {} |
| 12 | 16 |
| 13 void VoiceSearchController::SetDelegate( | 17 void VoiceSearchController::SetDelegate( |
| 14 id<VoiceSearchControllerDelegate> delegate) {} | 18 id<VoiceSearchControllerDelegate> delegate) {} |
| 15 | 19 |
| 16 void VoiceSearchController::PrepareToAppear() {} | 20 void VoiceSearchController::PrepareToAppear() {} |
| 17 | 21 |
| 18 void VoiceSearchController::StartRecognition( | 22 void VoiceSearchController::StartRecognition( |
| (...skipping 10 matching lines...) Expand all Loading... |
| 29 | 33 |
| 30 bool VoiceSearchController::IsVisible() { | 34 bool VoiceSearchController::IsVisible() { |
| 31 return false; | 35 return false; |
| 32 } | 36 } |
| 33 | 37 |
| 34 bool VoiceSearchController::IsPlayingAudio() { | 38 bool VoiceSearchController::IsPlayingAudio() { |
| 35 return false; | 39 return false; |
| 36 } | 40 } |
| 37 | 41 |
| 38 void VoiceSearchController::DismissMicPermissionsHelp() {} | 42 void VoiceSearchController::DismissMicPermissionsHelp() {} |
| OLD | NEW |