Bug 1080883 - Part 2: Augmented MozMMIResult for error result (webidl). r=hsinyi

This commit is contained in:
Szu-Yu Chen [:aknow] 2014-11-11 17:15:31 +08:00
parent 0facb19abe
commit 24865d6bde

View File

@ -660,6 +660,11 @@ dictionary MozCallBarringOptions
dictionary MozMMIResult
{
/**
* Indicate whether the result is successful or not.
*/
boolean success = true;
/**
* String key that identifies the service associated with the MMI code
* request. The UI is supposed to handle the localization of the strings
@ -668,7 +673,9 @@ dictionary MozMMIResult
DOMString serviceCode = "";
/**
* String key containing the status message of the associated MMI request.
* String key containing the status message of the associated MMI request or
* the error message when the request fails.
* The UI is supposed to handle the localization of the strings associated
* with this string key.
*/