2018-10-06 11:48:00 +00:00
|
|
|
const binding = process.atomBinding('ipc')
|
|
|
|
const v8Util = process.atomBinding('v8_util')
|
|
|
|
|
|
|
|
// Created by init.js.
|
2019-02-15 01:24:25 +00:00
|
|
|
export const ipcRendererInternal: Electron.IpcRendererInternal = v8Util.getHiddenValue(global, 'ipc-internal')
|
2018-10-06 11:48:00 +00:00
|
|
|
const internal = true
|
|
|
|
|
2019-02-15 01:24:25 +00:00
|
|
|
ipcRendererInternal.send = function (channel, ...args) {
|
2019-01-23 16:24:57 +00:00
|
|
|
return binding.send(internal, channel, args)
|
2018-10-06 11:48:00 +00:00
|
|
|
}
|
|
|
|
|
2019-02-15 01:24:25 +00:00
|
|
|
ipcRendererInternal.sendSync = function (channel, ...args) {
|
2019-01-23 16:24:57 +00:00
|
|
|
return binding.sendSync(internal, channel, args)[0]
|
2018-10-06 11:48:00 +00:00
|
|
|
}
|
|
|
|
|
2019-02-15 01:24:25 +00:00
|
|
|
ipcRendererInternal.sendTo = function (webContentsId, channel, ...args) {
|
2018-10-06 11:48:00 +00:00
|
|
|
return binding.sendTo(internal, false, webContentsId, channel, args)
|
|
|
|
}
|
|
|
|
|
2019-02-15 01:24:25 +00:00
|
|
|
ipcRendererInternal.sendToAll = function (webContentsId, channel, ...args) {
|
2018-10-06 11:48:00 +00:00
|
|
|
return binding.sendTo(internal, true, webContentsId, channel, args)
|
|
|
|
}
|