| 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/browser/profile_sync_service.h" | 8 #include "components/browser_sync/browser/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" |
| 11 #include "components/omnibox/browser/autocomplete_classifier.h" | 11 #include "components/omnibox/browser/autocomplete_classifier.h" |
| 12 #include "components/prefs/pref_service.h" | 12 #include "components/prefs/pref_service.h" |
| 13 #include "components/sync_driver/sync_service_utils.h" | 13 #include "components/sync_driver/sync_service_utils.h" |
| 14 #include "ios/chrome/browser/autocomplete/autocomplete_classifier_factory.h" | 14 #include "ios/chrome/browser/autocomplete/autocomplete_classifier_factory.h" |
| 15 #include "ios/chrome/browser/autocomplete/in_memory_url_index_factory.h" | 15 #include "ios/chrome/browser/autocomplete/in_memory_url_index_factory.h" |
| 16 #include "ios/chrome/browser/autocomplete/shortcuts_backend_factory.h" | 16 #include "ios/chrome/browser/autocomplete/shortcuts_backend_factory.h" |
| 17 #include "ios/chrome/browser/bookmarks/bookmark_model_factory.h" | 17 #include "ios/chrome/browser/bookmarks/bookmark_model_factory.h" |
| 18 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 18 #include "ios/chrome/browser/chrome_url_constants.h" | 19 #include "ios/chrome/browser/chrome_url_constants.h" |
| 19 #include "ios/chrome/browser/history/history_service_factory.h" | 20 #include "ios/chrome/browser/history/history_service_factory.h" |
| 20 #include "ios/chrome/browser/history/top_sites_factory.h" | 21 #include "ios/chrome/browser/history/top_sites_factory.h" |
| 21 #include "ios/chrome/browser/pref_names.h" | 22 #include "ios/chrome/browser/pref_names.h" |
| 22 #include "ios/chrome/browser/search_engines/template_url_service_factory.h" | 23 #include "ios/chrome/browser/search_engines/template_url_service_factory.h" |
| 23 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h" | 24 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h" |
| 24 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | |
| 25 | 25 |
| 26 AutocompleteProviderClientImpl::AutocompleteProviderClientImpl( | 26 AutocompleteProviderClientImpl::AutocompleteProviderClientImpl( |
| 27 ios::ChromeBrowserState* browser_state) | 27 ios::ChromeBrowserState* browser_state) |
| 28 : browser_state_(browser_state), search_terms_data_(browser_state_) {} | 28 : browser_state_(browser_state), search_terms_data_(browser_state_) {} |
| 29 | 29 |
| 30 AutocompleteProviderClientImpl::~AutocompleteProviderClientImpl() {} | 30 AutocompleteProviderClientImpl::~AutocompleteProviderClientImpl() {} |
| 31 | 31 |
| 32 net::URLRequestContextGetter* | 32 net::URLRequestContextGetter* |
| 33 AutocompleteProviderClientImpl::GetRequestContext() { | 33 AutocompleteProviderClientImpl::GetRequestContext() { |
| 34 return browser_state_->GetRequestContext(); | 34 return browser_state_->GetRequestContext(); |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 const base::string16& term) { | 154 const base::string16& term) { |
| 155 GetHistoryService()->DeleteMatchingURLsForKeyword(keyword_id, term); | 155 GetHistoryService()->DeleteMatchingURLsForKeyword(keyword_id, term); |
| 156 } | 156 } |
| 157 | 157 |
| 158 void AutocompleteProviderClientImpl::PrefetchImage(const GURL& url) {} | 158 void AutocompleteProviderClientImpl::PrefetchImage(const GURL& url) {} |
| 159 | 159 |
| 160 void AutocompleteProviderClientImpl::OnAutocompleteControllerResultReady( | 160 void AutocompleteProviderClientImpl::OnAutocompleteControllerResultReady( |
| 161 AutocompleteController* controller) { | 161 AutocompleteController* controller) { |
| 162 // iOS currently has no client for this event. | 162 // iOS currently has no client for this event. |
| 163 } | 163 } |
| OLD | NEW |