| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" | 5 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" |
| 6 | 6 |
| 7 #include <cstddef> | 7 #include <cstddef> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "components/metrics/metrics_provider.h" | 10 #include "components/metrics/metrics_provider.h" |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 } | 127 } |
| 128 | 128 |
| 129 NSArray* ChromeBrowserProvider::GetAvailableVoiceSearchLanguages() const { | 129 NSArray* ChromeBrowserProvider::GetAvailableVoiceSearchLanguages() const { |
| 130 return [NSArray array]; | 130 return [NSArray array]; |
| 131 } | 131 } |
| 132 | 132 |
| 133 VoiceSearchProvider* ChromeBrowserProvider::GetVoiceSearchProvider() const { | 133 VoiceSearchProvider* ChromeBrowserProvider::GetVoiceSearchProvider() const { |
| 134 return nullptr; | 134 return nullptr; |
| 135 } | 135 } |
| 136 | 136 |
| 137 id<LogoVendor> ChromeBrowserProvider::CreateLogoVendor( |
| 138 ios::ChromeBrowserState* browser_state, |
| 139 id<UrlLoader> loader) const { |
| 140 return nil; |
| 141 } |
| 142 |
| 137 bool ChromeBrowserProvider::ShouldEmbedderRegisterVoiceSearchPrefs() const { | 143 bool ChromeBrowserProvider::ShouldEmbedderRegisterVoiceSearchPrefs() const { |
| 138 return false; | 144 return false; |
| 139 } | 145 } |
| 140 | 146 |
| 141 } // namespace ios | 147 } // namespace ios |
| OLD | NEW |