| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_AUTOCOMPLETE_HISTORY_URL_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_HISTORY_URL_PROVIDER_H_ |
| 6 #define CHROME_BROWSER_AUTOCOMPLETE_HISTORY_URL_PROVIDER_H_ | 6 #define CHROME_BROWSER_AUTOCOMPLETE_HISTORY_URL_PROVIDER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 // can insert results in appropriate ranges relative to these. | 187 // can insert results in appropriate ranges relative to these. |
| 188 static const int kScoreForBestInlineableResult; | 188 static const int kScoreForBestInlineableResult; |
| 189 static const int kScoreForUnvisitedIntranetResult; | 189 static const int kScoreForUnvisitedIntranetResult; |
| 190 static const int kScoreForWhatYouTypedResult; | 190 static const int kScoreForWhatYouTypedResult; |
| 191 static const int kBaseScoreForNonInlineableResult; | 191 static const int kBaseScoreForNonInlineableResult; |
| 192 | 192 |
| 193 HistoryURLProvider(AutocompleteProviderListener* listener, Profile* profile); | 193 HistoryURLProvider(AutocompleteProviderListener* listener, Profile* profile); |
| 194 | 194 |
| 195 // HistoryProvider: | 195 // HistoryProvider: |
| 196 virtual void Start(const AutocompleteInput& input, | 196 virtual void Start(const AutocompleteInput& input, |
| 197 bool minimal_changes) override; | 197 bool minimal_changes, |
| 198 bool on_focus) override; |
| 198 virtual void Stop(bool clear_cached_results) override; | 199 virtual void Stop(bool clear_cached_results) override; |
| 199 | 200 |
| 200 // Returns a match representing a navigation to |destination_url| given user | 201 // Returns a match representing a navigation to |destination_url| given user |
| 201 // input of |text|. |trim_http| controls whether the match's |fill_into_edit| | 202 // input of |text|. |trim_http| controls whether the match's |fill_into_edit| |
| 202 // and |contents| should have any HTTP scheme stripped off, and should not be | 203 // and |contents| should have any HTTP scheme stripped off, and should not be |
| 203 // set to true if |text| contains an http prefix. | 204 // set to true if |text| contains an http prefix. |
| 204 // NOTES: This does not set the relevance of the returned match, as different | 205 // NOTES: This does not set the relevance of the returned match, as different |
| 205 // callers want different behavior. Callers must set this manually. | 206 // callers want different behavior. Callers must set this manually. |
| 206 // This function should only be called on the UI thread. | 207 // This function should only be called on the UI thread. |
| 207 AutocompleteMatch SuggestExactInput(const base::string16& text, | 208 AutocompleteMatch SuggestExactInput(const base::string16& text, |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 // keep this member is so we can set the cancel bit on it. | 332 // keep this member is so we can set the cancel bit on it. |
| 332 HistoryURLProviderParams* params_; | 333 HistoryURLProviderParams* params_; |
| 333 | 334 |
| 334 // Params controlling experimental behavior of this provider. | 335 // Params controlling experimental behavior of this provider. |
| 335 HUPScoringParams scoring_params_; | 336 HUPScoringParams scoring_params_; |
| 336 | 337 |
| 337 DISALLOW_COPY_AND_ASSIGN(HistoryURLProvider); | 338 DISALLOW_COPY_AND_ASSIGN(HistoryURLProvider); |
| 338 }; | 339 }; |
| 339 | 340 |
| 340 #endif // CHROME_BROWSER_AUTOCOMPLETE_HISTORY_URL_PROVIDER_H_ | 341 #endif // CHROME_BROWSER_AUTOCOMPLETE_HISTORY_URL_PROVIDER_H_ |
| OLD | NEW |