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

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

Issue 1861593005: Convert //ios from scoped_ptr to std::unique_ptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add header Created 4 years, 8 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/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"
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 AutocompleteProviderClientImpl::GetShortcutsBackend() { 90 AutocompleteProviderClientImpl::GetShortcutsBackend() {
91 return ios::ShortcutsBackendFactory::GetForBrowserState(browser_state_); 91 return ios::ShortcutsBackendFactory::GetForBrowserState(browser_state_);
92 } 92 }
93 93
94 scoped_refptr<ShortcutsBackend> 94 scoped_refptr<ShortcutsBackend>
95 AutocompleteProviderClientImpl::GetShortcutsBackendIfExists() { 95 AutocompleteProviderClientImpl::GetShortcutsBackendIfExists() {
96 return ios::ShortcutsBackendFactory::GetForBrowserStateIfExists( 96 return ios::ShortcutsBackendFactory::GetForBrowserStateIfExists(
97 browser_state_); 97 browser_state_);
98 } 98 }
99 99
100 scoped_ptr<KeywordExtensionsDelegate> 100 std::unique_ptr<KeywordExtensionsDelegate>
101 AutocompleteProviderClientImpl::GetKeywordExtensionsDelegate( 101 AutocompleteProviderClientImpl::GetKeywordExtensionsDelegate(
102 KeywordProvider* keyword_provider) { 102 KeywordProvider* keyword_provider) {
103 return nullptr; 103 return nullptr;
104 } 104 }
105 105
106 std::string AutocompleteProviderClientImpl::GetAcceptLanguages() const { 106 std::string AutocompleteProviderClientImpl::GetAcceptLanguages() const {
107 return browser_state_->GetPrefs()->GetString(prefs::kAcceptLanguages); 107 return browser_state_->GetPrefs()->GetString(prefs::kAcceptLanguages);
108 } 108 }
109 109
110 std::string 110 std::string
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698