Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Side by Side Diff: ios/chrome/browser/autocomplete/autocomplete_provider_client_impl.cc

Issue 2376123003: [Sync] Move //components/sync to the syncer namespace. (Closed)
Patch Set: Rebase. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 131
132 bool AutocompleteProviderClientImpl::IsOffTheRecord() const { 132 bool AutocompleteProviderClientImpl::IsOffTheRecord() const {
133 return browser_state_->IsOffTheRecord(); 133 return browser_state_->IsOffTheRecord();
134 } 134 }
135 135
136 bool AutocompleteProviderClientImpl::SearchSuggestEnabled() const { 136 bool AutocompleteProviderClientImpl::SearchSuggestEnabled() const {
137 return browser_state_->GetPrefs()->GetBoolean(prefs::kSearchSuggestEnabled); 137 return browser_state_->GetPrefs()->GetBoolean(prefs::kSearchSuggestEnabled);
138 } 138 }
139 139
140 bool AutocompleteProviderClientImpl::TabSyncEnabledAndUnencrypted() const { 140 bool AutocompleteProviderClientImpl::TabSyncEnabledAndUnencrypted() const {
141 return sync_driver::IsTabSyncEnabledAndUnencrypted( 141 return syncer::IsTabSyncEnabledAndUnencrypted(
142 IOSChromeProfileSyncServiceFactory::GetForBrowserState(browser_state_), 142 IOSChromeProfileSyncServiceFactory::GetForBrowserState(browser_state_),
143 browser_state_->GetPrefs()); 143 browser_state_->GetPrefs());
144 } 144 }
145 145
146 void AutocompleteProviderClientImpl::Classify( 146 void AutocompleteProviderClientImpl::Classify(
147 const base::string16& text, 147 const base::string16& text,
148 bool prefer_keyword, 148 bool prefer_keyword,
149 bool allow_exact_keyword_match, 149 bool allow_exact_keyword_match,
150 metrics::OmniboxEventProto::PageClassification page_classification, 150 metrics::OmniboxEventProto::PageClassification page_classification,
151 AutocompleteMatch* match, 151 AutocompleteMatch* match,
152 GURL* alternate_nav_url) { 152 GURL* alternate_nav_url) {
153 AutocompleteClassifier* classifier = GetAutocompleteClassifier(); 153 AutocompleteClassifier* classifier = GetAutocompleteClassifier();
154 classifier->Classify(text, prefer_keyword, allow_exact_keyword_match, 154 classifier->Classify(text, prefer_keyword, allow_exact_keyword_match,
155 page_classification, match, alternate_nav_url); 155 page_classification, match, alternate_nav_url);
156 } 156 }
157 157
158 void AutocompleteProviderClientImpl::DeleteMatchingURLsForKeywordFromHistory( 158 void AutocompleteProviderClientImpl::DeleteMatchingURLsForKeywordFromHistory(
159 history::KeywordID keyword_id, 159 history::KeywordID keyword_id,
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 }
OLDNEW
« no previous file with comments | « components/sync_sessions/tab_node_pool.h ('k') | ios/chrome/browser/browser_state/chrome_browser_state_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698