зеркало из https://github.com/mozilla/gecko-dev.git
Bug 904333 - Add forEach{Request,PromiseResolver} method to DOMRequestIpcHelper r=fabrice
--HG-- extra : rebase_source : 181aead1356a73a5a8a85c98000f3375c751ee33
This commit is contained in:
Родитель
64d4f74c1f
Коммит
aee7017ffe
|
@ -209,5 +209,21 @@ DOMRequestIpcHelper.prototype = {
|
|||
*/
|
||||
createPromise: function(aPromiseInit) {
|
||||
return new this._window.Promise(aPromiseInit);
|
||||
}
|
||||
},
|
||||
|
||||
forEachRequest: function(aCallback) {
|
||||
Object.keys(this._requests).forEach(function(k) {
|
||||
if (this.getRequest(k) instanceof this._window.DOMRequest) {
|
||||
aCallback(k);
|
||||
}
|
||||
}, this);
|
||||
},
|
||||
|
||||
forEachPromiseResolver: function(aCallback) {
|
||||
Object.keys(this._requests).forEach(function(k) {
|
||||
if (this.getPromiseResolver(k) instanceof this._window.PromiseResolver) {
|
||||
aCallback(k);
|
||||
}
|
||||
}, this);
|
||||
},
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче