Make global.setImmediate work in browser process
This commit is contained in:
parent
d2e52fb6bb
commit
9d366e6c5c
1 changed files with 2 additions and 0 deletions
|
@ -45,6 +45,8 @@ if process.type is 'browser'
|
||||||
# recalculate the timeout in browser process.
|
# recalculate the timeout in browser process.
|
||||||
global.setTimeout = wrapWithActivateUvLoop timers.setTimeout
|
global.setTimeout = wrapWithActivateUvLoop timers.setTimeout
|
||||||
global.setInterval = wrapWithActivateUvLoop timers.setInterval
|
global.setInterval = wrapWithActivateUvLoop timers.setInterval
|
||||||
|
global.setImmediate = wrapWithActivateUvLoop timers.setImmediate
|
||||||
|
global.clearImmediate = wrapWithActivateUvLoop timers.clearImmediate
|
||||||
else
|
else
|
||||||
# There are no setImmediate under renderer process by default, so we need to
|
# There are no setImmediate under renderer process by default, so we need to
|
||||||
# manually setup them here.
|
# manually setup them here.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue