runet-censorship-bypass/extensions/chromium/minimalistic-pac-setter/extension/20-api-fixes.js
2016-12-02 10:52:11 -08:00

27 lines
733 B
JavaScript

'use strict';
/* `setTimeout` changes context of execution from other window
(e.g. popup) to background window, so we may catch errors
in bg error handlers.
More: https://bugs.chromium.org/p/chromium/issues/detail?id=357568
setTimeout is applied to Async methods only (name ends with Async)
*/
// Fix error context of methods of all APIs.
/*
for(const apiName of Object.keys(window.apis)) {
const api = window.apis[apiName];
for(const prop of Object.keys(api)) {
const method = api[prop];
if ( !(typeof(api[prop]) === 'function'
&& method.name.endsWith('Async')) ) {
continue;
}
api[prop] = function(...args) {
setTimeout(method.bind(this, ...args), 0);
};
}
}*/