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
parent 1e516f6229
commit b8d8b85d6c

View File

@ -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)
{