Move "restart()" API to webContents.
This commit is contained in:
parent
8342c7cfe1
commit
19698fc739
2 changed files with 5 additions and 3 deletions
|
@ -11,6 +11,10 @@ module.exports.wrap = (webContents) ->
|
|||
webContents.send = (args...) ->
|
||||
@_send 'ATOM_INTERNAL_MESSAGE', [args...]
|
||||
|
||||
# WebContents::restart()
|
||||
# Restart the renderer process.
|
||||
webContents.restart = -> @loadUrl @getUrl()
|
||||
|
||||
# The processId and routingId and identify a webContents.
|
||||
webContents.getId = -> "#{@getProcessId()}-#{@getRoutingId()}"
|
||||
webContents.equal = (other) -> @getId() is other.getId()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue