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')
|
2017-02-27 17:34:08 +00:00
|
|
|
|
|
|
|
ipcRenderer.send = function (...args) {
|
|
|
|
return binding.send('ipc-message', args)
|
|
|
|
}
|
|
|
|
|
|
|
|
ipcRenderer.sendSync = function (...args) {
|
|
|
|
return JSON.parse(binding.sendSync('ipc-message-sync', args))
|
|
|
|
}
|
|
|
|
|
|
|
|
ipcRenderer.sendToHost = function (...args) {
|
|
|
|
return binding.send('ipc-message-host', args)
|
|
|
|
}
|
|
|
|
|
|
|
|
ipcRenderer.sendTo = function (webContentsId, channel, ...args) {
|
|
|
|
if (typeof webContentsId !== 'number') {
|
|
|
|
throw new TypeError('First argument has to be webContentsId')
|
|
|
|
}
|
|
|
|
|
|
|
|
ipcRenderer.send('ELECTRON_BROWSER_SEND_TO', false, webContentsId, channel, ...args)
|
|
|
|
}
|
|
|
|
|
|
|
|
ipcRenderer.sendToAll = function (webContentsId, channel, ...args) {
|
|
|
|
if (typeof webContentsId !== 'number') {
|
|
|
|
throw new TypeError('First argument has to be webContentsId')
|
|
|
|
}
|
|
|
|
|
|
|
|
ipcRenderer.send('ELECTRON_BROWSER_SEND_TO', true, webContentsId, channel, ...args)
|
|
|
|
}
|
|
|
|
|
|
|
|
const removeAllListeners = ipcRenderer.removeAllListeners.bind(ipcRenderer)
|
|
|
|
ipcRenderer.removeAllListeners = function (...args) {
|
|
|
|
if (args.length === 0) {
|
|
|
|
throw new Error('Removing all listeners from ipcRenderer will make Electron internals stop working. Please specify a event name')
|
|
|
|
}
|
|
|
|
removeAllListeners(...args)
|
|
|
|
}
|
2016-05-18 12:19:50 +00:00
|
|
|
|
2016-03-25 19:57:17 +00:00
|
|
|
module.exports = ipcRenderer
|