Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | #include "nsISupports.idl" |
michael@0 | 6 | |
michael@0 | 7 | interface nsIAutoCompleteResult; |
michael@0 | 8 | interface nsIDOMHTMLInputElement; |
michael@0 | 9 | |
michael@0 | 10 | [scriptable, uuid(9e7ba3eb-a9cf-4861-93e0-82e93d836f7a)] |
michael@0 | 11 | |
michael@0 | 12 | interface nsIInputListAutoComplete: nsISupports { |
michael@0 | 13 | /** |
michael@0 | 14 | * Generate results for a form input autocomplete menu. |
michael@0 | 15 | */ |
michael@0 | 16 | nsIAutoCompleteResult autoCompleteSearch(in nsIAutoCompleteResult aResult, |
michael@0 | 17 | in AString aSearchString, |
michael@0 | 18 | in nsIDOMHTMLInputElement aField); |
michael@0 | 19 | }; |