Restore typeAheadResult support in autocomplete

This commit is contained in:
NTD 2018-04-17 07:31:18 -04:00 committed by Roy Tam
commit 6106e49360
11 changed files with 273 additions and 52 deletions

View file

@ -133,6 +133,13 @@ NS_IMETHODIMP nsFileResult::GetMatchCount(uint32_t *aMatchCount)
return NS_OK;
}
NS_IMETHODIMP nsFileResult::GetTypeAheadResult(bool *aTypeAheadResult)
{
NS_ENSURE_ARG_POINTER(aTypeAheadResult);
*aTypeAheadResult = false;
return NS_OK;
}
NS_IMETHODIMP nsFileResult::GetValueAt(int32_t index, nsAString & aValue)
{
aValue = mValues[index];