2016-03-25 19:57:17 +00:00
|
|
|
'use strict'
|
2016-03-18 18:51:02 +00:00
|
|
|
|
2016-03-25 19:57:17 +00:00
|
|
|
const binding = process.atomBinding('ipc')
|
|
|
|
const v8Util = process.atomBinding('v8_util')
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-03-07 09:26:36 +00:00
|
|
|
// Created by init.js.
|
2016-03-25 19:57:17 +00:00
|
|
|
const ipcRenderer = v8Util.getHiddenValue(global, 'ipc')
|
2018-10-06 11:48:00 +00:00
|
|
|
const internal = false
|
2017-02-27 17:34:08 +00:00
|
|
|
|
2019-01-23 16:24:57 +00:00
|
|
|
ipcRenderer.send = function (channel, ...args) {
|
|
|
|
return binding.send(internal, channel, args)
|
2017-02-27 17:34:08 +00:00
|
|
|
}
|
|
|
|
|
2019-01-23 16:24:57 +00:00
|
|
|
ipcRenderer.sendSync = function (channel, ...args) {
|
|
|
|
return binding.sendSync(internal, channel, args)[0]
|
2017-02-27 17:34:08 +00:00
|
|
|
}
|
|
|
|
|
2019-01-23 16:24:57 +00:00
|
|
|
ipcRenderer.sendToHost = function (channel, ...args) {
|
|
|
|
return binding.sendToHost(channel, args)
|
2017-02-27 17:34:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ipcRenderer.sendTo = function (webContentsId, channel, ...args) {
|
2018-10-06 11:48:00 +00:00
|
|
|
return binding.sendTo(internal, false, webContentsId, channel, args)
|
2017-02-27 17:34:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ipcRenderer.sendToAll = function (webContentsId, channel, ...args) {
|
2018-10-06 11:48:00 +00:00
|
|
|
return binding.sendTo(internal, true, webContentsId, channel, args)
|
2017-02-27 17:34:08 +00:00
|
|
|
}
|
2016-05-18 12:19:50 +00:00
|
|
|
|
2016-03-25 19:57:17 +00:00
|
|
|
module.exports = ipcRenderer
|