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

Side by Side Diff: chrome/browser/ui/omnibox/omnibox_controller.cc

Issue 14698028: Omnibox refactor. OmniboxController now holds an AutocompleteMatch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
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 "chrome/browser/ui/omnibox/omnibox_controller.h" 5 #include "chrome/browser/ui/omnibox/omnibox_controller.h"
6 6
7 #include "base/metrics/histogram.h" 7 #include "base/metrics/histogram.h"
8 #include "chrome/browser/autocomplete/autocomplete_classifier.h" 8 #include "chrome/browser/autocomplete/autocomplete_classifier.h"
9 #include "chrome/browser/autocomplete/autocomplete_match.h" 9 #include "chrome/browser/autocomplete/autocomplete_match.h"
10 #include "chrome/browser/autocomplete/search_provider.h" 10 #include "chrome/browser/autocomplete/search_provider.h"
11 #include "chrome/browser/net/predictor.h" 11 #include "chrome/browser/net/predictor.h"
12 #include "chrome/browser/predictors/autocomplete_action_predictor.h" 12 #include "chrome/browser/predictors/autocomplete_action_predictor.h"
13 #include "chrome/browser/prerender/prerender_field_trial.h" 13 #include "chrome/browser/prerender/prerender_field_trial.h"
14 #include "chrome/browser/prerender/prerender_manager.h" 14 #include "chrome/browser/prerender/prerender_manager.h"
15 #include "chrome/browser/prerender/prerender_manager_factory.h" 15 #include "chrome/browser/prerender/prerender_manager_factory.h"
16 #include "chrome/browser/profiles/profile.h" 16 #include "chrome/browser/profiles/profile.h"
17 #include "chrome/browser/search/search.h" 17 #include "chrome/browser/search/search.h"
18 #include "chrome/browser/search_engines/template_url_service.h"
19 #include "chrome/browser/search_engines/template_url_service_factory.h"
18 #include "chrome/browser/ui/omnibox/omnibox_edit_controller.h" 20 #include "chrome/browser/ui/omnibox/omnibox_edit_controller.h"
19 #include "chrome/browser/ui/omnibox/omnibox_edit_model.h" 21 #include "chrome/browser/ui/omnibox/omnibox_edit_model.h"
20 #include "chrome/browser/ui/omnibox/omnibox_popup_model.h" 22 #include "chrome/browser/ui/omnibox/omnibox_popup_model.h"
21 #include "chrome/browser/ui/omnibox/omnibox_popup_view.h" 23 #include "chrome/browser/ui/omnibox/omnibox_popup_view.h"
22 #include "chrome/browser/ui/search/instant_controller.h" 24 #include "chrome/browser/ui/search/instant_controller.h"
23 #include "extensions/common/constants.h" 25 #include "extensions/common/constants.h"
24 #include "ui/gfx/rect.h" 26 #include "ui/gfx/rect.h"
25 27
26 using predictors::AutocompleteActionPredictor; 28 using predictors::AutocompleteActionPredictor;
27 29
30 namespace {
31
32 string16 GetDefaultSearchProviderKeyword(Profile* profile) {
33 TemplateURLService* template_url_service =
34 TemplateURLServiceFactory::GetForProfile(profile);
35 if (template_url_service) {
36 TemplateURL* template_url =
37 template_url_service->GetDefaultSearchProvider();
38 if (template_url)
39 return template_url->keyword();
40 }
41 return string16();
42 }
43
44 } // namespace
28 45
29 OmniboxController::OmniboxController(OmniboxEditModel* omnibox_edit_model, 46 OmniboxController::OmniboxController(OmniboxEditModel* omnibox_edit_model,
30 Profile* profile) 47 Profile* profile)
31 : omnibox_edit_model_(omnibox_edit_model), 48 : omnibox_edit_model_(omnibox_edit_model),
32 profile_(profile) { 49 profile_(profile) {
33 autocomplete_controller_.reset(new AutocompleteController(profile, this, 50 autocomplete_controller_.reset(new AutocompleteController(profile, this,
34 chrome::IsInstantExtendedAPIEnabled() ? 51 chrome::IsInstantExtendedAPIEnabled() ?
35 AutocompleteClassifier::kInstantExtendedOmniboxProviders : 52 AutocompleteClassifier::kInstantExtendedOmniboxProviders :
36 AutocompleteClassifier::kDefaultOmniboxProviders)); 53 AutocompleteClassifier::kDefaultOmniboxProviders));
37 } 54 }
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 AutocompleteInput::ALL_MATCHES)); 93 AutocompleteInput::ALL_MATCHES));
77 } 94 }
78 95
79 void OmniboxController::OnResultChanged(bool default_match_changed) { 96 void OmniboxController::OnResultChanged(bool default_match_changed) {
80 // TODO(beaudoin): There should be no need to access the popup when using 97 // TODO(beaudoin): There should be no need to access the popup when using
81 // instant extended, remove this reference. 98 // instant extended, remove this reference.
82 const bool was_open = popup_->IsOpen(); 99 const bool was_open = popup_->IsOpen();
83 if (default_match_changed) { 100 if (default_match_changed) {
84 // The default match has changed, we need to let the OmniboxEditModel know 101 // The default match has changed, we need to let the OmniboxEditModel know
85 // about new inline autocomplete text (blue highlight). 102 // about new inline autocomplete text (blue highlight).
86 string16 inline_autocomplete_text;
87 string16 keyword;
88 bool is_keyword_hint = false;
89 const AutocompleteResult& result = this->result(); 103 const AutocompleteResult& result = this->result();
90 const AutocompleteResult::const_iterator match(result.default_match()); 104 const AutocompleteResult::const_iterator match(result.default_match());
91 if (match != result.end()) { 105 if (match != result.end()) {
92 if ((match->inline_autocomplete_offset != string16::npos) && 106 current_match_ = *match;
93 (match->inline_autocomplete_offset < 107 // The |fill_into_edit| we get may not match what we have in the view at
94 match->fill_into_edit.length())) { 108 // that time. We're only interested in the inline_autocomplete part, so
95 inline_autocomplete_text = 109 // update this here.
96 match->fill_into_edit.substr(match->inline_autocomplete_offset); 110 current_match_.fill_into_edit = omnibox_edit_model_->user_text();
111 if (match->inline_autocomplete_offset < match->fill_into_edit.length()) {
112 current_match_.inline_autocomplete_offset =
113 current_match_.fill_into_edit.length();
114 current_match_.fill_into_edit += match->fill_into_edit.substr(
115 match->inline_autocomplete_offset);
116 } else {
117 current_match_.inline_autocomplete_offset = string16::npos;
97 } 118 }
98 119
99 if (!prerender::IsOmniboxEnabled(profile_)) 120 if (!prerender::IsOmniboxEnabled(profile_))
100 DoPreconnect(*match); 121 DoPreconnect(*match);
101 122 omnibox_edit_model_->OnCurrentMatchChanged(false);
102 // We could prefetch the alternate nav URL, if any, but because there 123 } else {
103 // can be many of these as a user types an initial series of characters, 124 InvalidateCurrentMatch();
104 // the OS DNS cache could suffer eviction problems for minimal gain. 125 popup_->OnResultChanged();
105 126 omnibox_edit_model_->OnPopupDataChanged(string16(), NULL, string16(),
106 match->GetKeywordUIState(profile_, &keyword, &is_keyword_hint); 127 false);
107 } 128 }
108
109 popup_->OnResultChanged();
110 omnibox_edit_model_->OnPopupDataChanged(inline_autocomplete_text, NULL,
111 keyword, is_keyword_hint);
112 } else { 129 } else {
113 popup_->OnResultChanged(); 130 popup_->OnResultChanged();
114 } 131 }
115 132
133 // TODO(beaudoin): This may no longer be needed now that instant classic is
134 // gone.
116 if (popup_->IsOpen()) { 135 if (popup_->IsOpen()) {
117 // The popup size may have changed, let instant know. 136 // The popup size may have changed, let instant know.
118 OnPopupBoundsChanged(popup_->view()->GetTargetBounds()); 137 OnPopupBoundsChanged(popup_->view()->GetTargetBounds());
119 138
120 #if defined(HTML_INSTANT_EXTENDED_POPUP) 139 #if defined(HTML_INSTANT_EXTENDED_POPUP)
121 InstantController* instant_controller = GetInstantController(); 140 InstantController* instant_controller = GetInstantController();
122 if (instant_controller && !omnibox_edit_model_->in_revert()) { 141 if (instant_controller && !omnibox_edit_model_->in_revert()) {
123 instant_controller->HandleAutocompleteResults( 142 instant_controller->HandleAutocompleteResults(
124 *autocomplete_controller_->providers(), 143 *autocomplete_controller_->providers(),
125 autocomplete_controller_->result()); 144 autocomplete_controller_->result());
(...skipping 29 matching lines...) Expand all
155 autocomplete_controller_->input().type(), &full_text); 174 autocomplete_controller_->input().type(), &full_text);
156 return instant_controller->Update( 175 return instant_controller->Update(
157 match, user_text, full_text, selection_start, selection_end, 176 match, user_text, full_text, selection_start, selection_end,
158 UseVerbatimInstant(just_deleted_text), user_input_in_progress, 177 UseVerbatimInstant(just_deleted_text), user_input_in_progress,
159 popup_->IsOpen(), in_escape_handler, keyword_is_selected); 178 popup_->IsOpen(), in_escape_handler, keyword_is_selected);
160 #else 179 #else
161 return false; 180 return false;
162 #endif 181 #endif
163 } 182 }
164 183
184 void OmniboxController::FinalizeInstantQuery(
185 const string16& input_text,
186 const InstantSuggestion& suggestion) {
187 // Should only get called for the HTML popup.
188 #if defined(HTML_INSTANT_EXTENDED_POPUP)
189 if (!popup_model()->result().empty()) {
190 // We need to finalize the instant query in all cases where the
191 // |popup_model| holds some result. It is not enough to check whether the
192 // popup is open, since when an IME is active the popup may be closed while
193 // |popup_model| contains a non-empty result.
194 SearchProvider* search_provider =
195 autocomplete_controller_->search_provider();
196 // There may be no providers during testing; guard against that.
197 if (search_provider)
198 search_provider->FinalizeInstantQuery(input_text, suggestion);
199 }
200 #endif
201 }
202
203 void OmniboxController::SetInstantSuggestion(
204 const InstantSuggestion& suggestion) {
205 // Should only get called for the HTML popup.
206 #if defined(HTML_INSTANT_EXTENDED_POPUP)
207 switch (suggestion.behavior) {
208 case INSTANT_COMPLETE_NOW:
209 // Set blue suggestion text.
210 // TODO(beaudoin): This currently goes to the SearchProvider. Instead we
211 // should just create a valid current_match_ and call
212 // omnibox_edit_model_->OnCurrentMatchChanged. This way we can get rid of
213 // FinalizeInstantQuery entirely.
214 if (!suggestion.text.empty())
215 FinalizeInstantQuery(omnibox_edit_model_->GetViewText(), suggestion);
216 return;
217
218 case INSTANT_COMPLETE_NEVER: {
219 DCHECK_EQ(INSTANT_SUGGESTION_SEARCH, suggestion.type);
220
221 // Set gray suggestion text.
222 // Remove "?" if we're in forced query mode.
223 gray_suggestion_ = suggestion.text;
224
225 // TODO(beaudoin): The following should no longer be needed once the
226 // instant suggestion no longer goes through the search provider.
227 SearchProvider* search_provider =
228 autocomplete_controller_->search_provider();
229 if (search_provider)
230 search_provider->ClearInstantSuggestion();
231
232 omnibox_edit_model_->OnGrayTextChanged();
233 return;
234 }
235
236 case INSTANT_COMPLETE_REPLACE:
237 // Replace the entire omnibox text by the suggestion the user just arrowed
238 // to.
239 CreateAndSetInstantMatch(suggestion.text, suggestion.text,
240 suggestion.type == INSTANT_SUGGESTION_SEARCH ?
241 AutocompleteMatchType::SEARCH_SUGGEST :
242 AutocompleteMatchType::URL_WHAT_YOU_TYPED);
243
244 omnibox_edit_model_->OnCurrentMatchChanged(true);
245 return;
246 }
247 #endif
248 }
249
250 void OmniboxController::InvalidateCurrentMatch() {
251 current_match_ = AutocompleteMatch();
252 }
253
165 void OmniboxController::ClearPopupKeywordMode() const { 254 void OmniboxController::ClearPopupKeywordMode() const {
166 if (popup_->IsOpen() && 255 if (popup_->IsOpen() &&
167 popup_->selected_line_state() == OmniboxPopupModel::KEYWORD) 256 popup_->selected_line_state() == OmniboxPopupModel::KEYWORD)
168 popup_->SetSelectedLineState(OmniboxPopupModel::NORMAL); 257 popup_->SetSelectedLineState(OmniboxPopupModel::NORMAL);
169 } 258 }
170 259
171 void OmniboxController::DoPreconnect(const AutocompleteMatch& match) { 260 void OmniboxController::DoPreconnect(const AutocompleteMatch& match) {
172 if (!match.destination_url.SchemeIs(extensions::kExtensionScheme)) { 261 if (!match.destination_url.SchemeIs(extensions::kExtensionScheme)) {
173 // Warm up DNS Prefetch cache, or preconnect to a search service. 262 // Warm up DNS Prefetch cache, or preconnect to a search service.
174 UMA_HISTOGRAM_ENUMERATION("Autocomplete.MatchType", match.type, 263 UMA_HISTOGRAM_ENUMERATION("Autocomplete.MatchType", match.type,
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 // We send the caret position to Instant (so it can determine #1 itself), and 295 // We send the caret position to Instant (so it can determine #1 itself), and
207 // we use a separated widget for displaying the Instant suggest (so it doesn't 296 // we use a separated widget for displaying the Instant suggest (so it doesn't
208 // interfere with #2). So, we don't need to care about the value of 297 // interfere with #2). So, we don't need to care about the value of
209 // input.prevent_inline_autocomplete() here. 298 // input.prevent_inline_autocomplete() here.
210 return just_deleted_text || popup_->selected_line() != 0; 299 return just_deleted_text || popup_->selected_line() != 0;
211 } 300 }
212 301
213 InstantController* OmniboxController::GetInstantController() const { 302 InstantController* OmniboxController::GetInstantController() const {
214 return omnibox_edit_model_->GetInstantController(); 303 return omnibox_edit_model_->GetInstantController();
215 } 304 }
305
306 void OmniboxController::CreateAndSetInstantMatch(
307 string16 query_string,
308 string16 input_text,
309 AutocompleteMatchType::Type match_type) {
310 string16 keyword = GetDefaultSearchProviderKeyword(profile_);
311 if (keyword.empty())
312 return; // CreateSearchSuggestion needs a keyword.
313
314 current_match_ = SearchProvider::CreateSearchSuggestion(profile_, NULL,
Peter Kasting 2013/06/15 00:29:21 Nit: All lines of args have to have the args start
beaudoin 2013/06/17 17:22:33 Done.
315 AutocompleteInput(), query_string, input_text, 0, match_type, 0, false,
316 keyword, -1);
317 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/omnibox/omnibox_controller.h ('k') | chrome/browser/ui/omnibox/omnibox_edit_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698