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