Bug 804667 - Part 2: Modify IccManager for TIMER_MANAGEMENT. r=smaug

This commit is contained in:
Edgar Chen 2012-12-04 19:19:17 +08:00
parent 65f48dc910
commit 0b0e9541d2

View File

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