mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1115758 - Part 5: Add nsITelephonyService.cancelUSSD (ril). r=hsinyi
This commit is contained in:
parent
f9b25fc080
commit
9dddf2de9f
@ -1066,6 +1066,16 @@ TelephonyService.prototype = {
|
||||
});
|
||||
},
|
||||
|
||||
cancelUSSD: function(aClientId, aCallback) {
|
||||
this._sendToRilWorker(aClientId, "cancelUSSD", {}, response => {
|
||||
if (!response.success) {
|
||||
aCallback.notifyError(response.errorMsg);
|
||||
} else {
|
||||
aCallback.notifySuccess();
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
get microphoneMuted() {
|
||||
return gAudioService.microphoneMuted;
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user