| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/chrome/browser/autocomplete/autocomplete_provider_client_impl.h" | 5 #include "ios/chrome/browser/autocomplete/autocomplete_provider_client_impl.h" |
| 6 | 6 |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "components/browser_sync/profile_sync_service.h" | 8 #include "components/browser_sync/profile_sync_service.h" |
| 9 #include "components/history/core/browser/history_service.h" | 9 #include "components/history/core/browser/history_service.h" |
| 10 #include "components/keyed_service/core/service_access_type.h" | 10 #include "components/keyed_service/core/service_access_type.h" |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 return ios::ShortcutsBackendFactory::GetForBrowserStateIfExists( | 97 return ios::ShortcutsBackendFactory::GetForBrowserStateIfExists( |
| 98 browser_state_); | 98 browser_state_); |
| 99 } | 99 } |
| 100 | 100 |
| 101 std::unique_ptr<KeywordExtensionsDelegate> | 101 std::unique_ptr<KeywordExtensionsDelegate> |
| 102 AutocompleteProviderClientImpl::GetKeywordExtensionsDelegate( | 102 AutocompleteProviderClientImpl::GetKeywordExtensionsDelegate( |
| 103 KeywordProvider* keyword_provider) { | 103 KeywordProvider* keyword_provider) { |
| 104 return nullptr; | 104 return nullptr; |
| 105 } | 105 } |
| 106 | 106 |
| 107 PhysicalWebDataSource* | 107 physical_web::PhysicalWebDataSource* |
| 108 AutocompleteProviderClientImpl::GetPhysicalWebDataSource() { | 108 AutocompleteProviderClientImpl::GetPhysicalWebDataSource() { |
| 109 return GetApplicationContext()->GetPhysicalWebDataSource(); | 109 return GetApplicationContext()->GetPhysicalWebDataSource(); |
| 110 } | 110 } |
| 111 | 111 |
| 112 std::string AutocompleteProviderClientImpl::GetAcceptLanguages() const { | 112 std::string AutocompleteProviderClientImpl::GetAcceptLanguages() const { |
| 113 return browser_state_->GetPrefs()->GetString(prefs::kAcceptLanguages); | 113 return browser_state_->GetPrefs()->GetString(prefs::kAcceptLanguages); |
| 114 } | 114 } |
| 115 | 115 |
| 116 std::string | 116 std::string |
| 117 AutocompleteProviderClientImpl::GetEmbedderRepresentationOfAboutScheme() { | 117 AutocompleteProviderClientImpl::GetEmbedderRepresentationOfAboutScheme() { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 const base::string16& term) { | 160 const base::string16& term) { |
| 161 GetHistoryService()->DeleteMatchingURLsForKeyword(keyword_id, term); | 161 GetHistoryService()->DeleteMatchingURLsForKeyword(keyword_id, term); |
| 162 } | 162 } |
| 163 | 163 |
| 164 void AutocompleteProviderClientImpl::PrefetchImage(const GURL& url) {} | 164 void AutocompleteProviderClientImpl::PrefetchImage(const GURL& url) {} |
| 165 | 165 |
| 166 void AutocompleteProviderClientImpl::OnAutocompleteControllerResultReady( | 166 void AutocompleteProviderClientImpl::OnAutocompleteControllerResultReady( |
| 167 AutocompleteController* controller) { | 167 AutocompleteController* controller) { |
| 168 // iOS currently has no client for this event. | 168 // iOS currently has no client for this event. |
| 169 } | 169 } |
| OLD | NEW |