| 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 bool VoiceSearchProvider::IsVoiceSearchEnabled() const { | 9 bool VoiceSearchProvider::IsVoiceSearchEnabled() const { |
| 10 return false; | 10 return false; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 scoped_refptr<VoiceSearchController> | 21 scoped_refptr<VoiceSearchController> |
| 22 VoiceSearchProvider::CreateVoiceSearchController( | 22 VoiceSearchProvider::CreateVoiceSearchController( |
| 23 ios::ChromeBrowserState* browser_state) const { | 23 ios::ChromeBrowserState* browser_state) const { |
| 24 return scoped_refptr<VoiceSearchController>(nullptr); | 24 return scoped_refptr<VoiceSearchController>(nullptr); |
| 25 } | 25 } |
| 26 | 26 |
| 27 UIView<VoiceSearchBar>* VoiceSearchProvider::CreateVoiceSearchBar( | 27 UIView<VoiceSearchBar>* VoiceSearchProvider::CreateVoiceSearchBar( |
| 28 CGRect frame) const { | 28 CGRect frame) const { |
| 29 return nil; | 29 return nil; |
| 30 } | 30 } |
| 31 |
| 32 UIView<VoiceSearchBar>* VoiceSearchProvider::BuildVoiceSearchBar( |
| 33 CGRect frame) const { |
| 34 return nil; |
| 35 } |
| OLD | NEW |