Bug 790547 - Part 2: Add SendEventDownload in IccManager. r=smaug

This commit is contained in:
Yoshi Huang 2012-09-12 15:24:58 +08:00
Родитель b9a3cdedc7
Коммит 098b699eba
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -137,6 +137,17 @@ IccManager::SendStkMenuSelection(uint16_t aItemIdentifier, bool aHelpRequested)
return NS_OK;
}
NS_IMETHODIMP
IccManager::SendStkEventDownload(const JS::Value& aEvent)
{
if (!mProvider) {
return NS_ERROR_FAILURE;
}
mProvider->SendStkEventDownload(GetOwner(), aEvent);
return NS_OK;
}
nsresult
IccManager::InternalDispatchEvent(const nsAString& aType)
{