asarfuckery/electronasar/canary/renderer/api/ipc-renderer.js

31 lines
804 B
JavaScript
Raw Normal View History

2019-06-20 21:19:08 +00:00
'use strict'
const binding = process.atomBinding('ipc')
const v8Util = process.atomBinding('v8_util')
2019-06-16 20:19:06 +00:00
// Created by init.js.
2019-06-20 21:19:08 +00:00
const ipcRenderer = v8Util.getHiddenValue(global, 'ipc')
const internal = false
ipcRenderer.send = function (...args) {
return binding.send('ipc-message', args)
}
ipcRenderer.sendSync = function (...args) {
return binding.sendSync('ipc-message-sync', args)[0]
}
ipcRenderer.sendToHost = function (...args) {
return binding.send('ipc-message-host', args)
}
2019-06-16 20:19:06 +00:00
ipcRenderer.sendTo = function (webContentsId, channel, ...args) {
2019-06-20 21:19:08 +00:00
return binding.sendTo(internal, false, webContentsId, channel, args)
}
2019-06-16 20:19:06 +00:00
ipcRenderer.sendToAll = function (webContentsId, channel, ...args) {
2019-06-20 21:19:08 +00:00
return binding.sendTo(internal, true, webContentsId, channel, args)
}
module.exports = ipcRenderer