| Index: chrome/browser/ui/omnibox/omnibox_controller.h
|
| diff --git a/chrome/browser/ui/omnibox/omnibox_controller.h b/chrome/browser/ui/omnibox/omnibox_controller.h
|
| index 326f1f9edbb3bf5b23a9bbc4742f2da6e27beab4..df1e9402fb5bd0113f58e2512f78e3cf635fc392 100644
|
| --- a/chrome/browser/ui/omnibox/omnibox_controller.h
|
| +++ b/chrome/browser/ui/omnibox/omnibox_controller.h
|
| @@ -16,7 +16,6 @@
|
|
|
| struct AutocompleteMatch;
|
| class AutocompleteResult;
|
| -class GURL;
|
| class InstantController;
|
| class OmniboxEditModel;
|
| class OmniboxPopupModel;
|
| @@ -40,15 +39,8 @@ class OmniboxController : public AutocompleteControllerDelegate {
|
| Profile* profile);
|
| virtual ~OmniboxController();
|
|
|
| - // |current_url| is only set for mobile ports.
|
| - void StartAutocomplete(
|
| - base::string16 user_text,
|
| - size_t cursor_position,
|
| - const GURL& current_url,
|
| - AutocompleteInput::PageClassification current_page_classification,
|
| - bool prevent_inline_autocomplete,
|
| - bool prefer_keyword,
|
| - bool allow_exact_keyword_match) const;
|
| + // The |current_url| field of input is only set for mobile ports.
|
| + void StartAutocomplete(const AutocompleteInput& input) const;
|
|
|
| // AutocompleteControllerDelegate:
|
| virtual void OnResultChanged(bool default_match_changed) OVERRIDE;
|
|
|