Chromium Code Reviews| Index: chrome/browser/ui/webui/omnibox/omnibox_ui_handler.h |
| diff --git a/chrome/browser/ui/webui/omnibox/omnibox_ui_handler.h b/chrome/browser/ui/webui/omnibox/omnibox_ui_handler.h |
| index e040493ddc114ed2db8f105bce52858687960686..590eb66c612107f4bf159e8cd0ae4418dc2ec30d 100644 |
| --- a/chrome/browser/ui/webui/omnibox/omnibox_ui_handler.h |
| +++ b/chrome/browser/ui/webui/omnibox/omnibox_ui_handler.h |
| @@ -49,12 +49,13 @@ class OmniboxUIHandler : public AutocompleteControllerDelegate, |
| private: |
| // Gets called from the javascript when a user enters text into the |
| // chrome://omnibox/ text box and clicks submit or hits enter. |
| - // |three_element_input_string| is expected to be a three-element list: |
| + // |input| is expected to be a four-element list: |
| // - first element: input string. |
| - // - second element: boolean indicating whether we should set |
| + // - second element: the cursor position. |
| + // - third element: boolean indicating whether we should set |
| // prevent_inline_autocomplete or not. |
| - // - third element: the cursor position. |
| - void StartOmniboxQuery(const base::ListValue* two_element_input_string); |
| + // - forth element: boolean indicating whether we should set prefer_keyword |
|
Evan Stade
2013/02/04 22:10:48
forth->fourth
Mark P
2013/02/04 22:12:50
Done.
|
| + void StartOmniboxQuery(const base::ListValue* input); |
| // Helper function for OnResultChanged(). |
| // Takes an iterator over AutocompleteMatches and packages them into |