| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_provider.h" | 5 #import "ios/public/provider/chrome/browser/voice/voice_search_provider.h" |
| 6 | 6 |
| 7 #import "ios/public/provider/chrome/browser/voice/voice_search_controller.h" | 7 #import "ios/public/provider/chrome/browser/voice/voice_search_controller.h" |
| 8 | 8 |
| 9 NSArray* VoiceSearchProvider::GetAvailableLanguages() const { | 9 NSArray* VoiceSearchProvider::GetAvailableLanguages() const { |
| 10 return @[]; | 10 return @[]; |
| 11 } | 11 } |
| 12 | 12 |
| 13 AudioSessionController* VoiceSearchProvider::GetAudioSessionController() const { | 13 AudioSessionController* VoiceSearchProvider::GetAudioSessionController() const { |
| 14 return nullptr; | 14 return nullptr; |
| 15 } | 15 } |
| 16 | 16 |
| 17 scoped_refptr<VoiceSearchController> | 17 scoped_refptr<VoiceSearchController> |
| 18 VoiceSearchProvider::CreateVoiceSearchController( | 18 VoiceSearchProvider::CreateVoiceSearchController( |
| 19 ios::ChromeBrowserState* browser_state) const { | 19 ios::ChromeBrowserState* browser_state) const { |
| 20 return scoped_refptr<VoiceSearchController>(nullptr); | 20 return scoped_refptr<VoiceSearchController>(nullptr); |
| 21 } | 21 } |
| 22 |
| 23 UIView<VoiceSearchBar>* VoiceSearchProvider::CreateVoiceSearchBar( |
| 24 CGRect frame) const { |
| 25 return nil; |
| 26 } |
| OLD | NEW |