Add getRoutingID and getProcessID for window API.

This commit is contained in:
Cheng Zhao 2013-04-23 17:21:34 +08:00
parent 16244e42e0
commit d28f51fb9c
5 changed files with 29 additions and 3 deletions

View file

@ -7,6 +7,9 @@ class Ipc extends EventEmitter
@emit('message', args...)
send: (args...) ->
send('ATOM_INTERNAL_MESSAGE', args...)
@sendChannel('ATOM_INTERNAL_MESSAGE', args...)
sendChannel: (args...) ->
send(args...)
module.exports = new Ipc