electron/lib/renderer/api/ipc-renderer.js

22 lines
508 B
JavaScript
Raw Normal View History

2016-03-25 12:57:17 -07:00
'use strict'
2016-03-18 11:51:02 -07:00
2016-03-25 12:57:17 -07:00
const binding = process.atomBinding('ipc')
const v8Util = process.atomBinding('v8_util')
2016-01-11 18:40:23 -08:00
// Created by init.js.
2016-03-25 12:57:17 -07:00
const ipcRenderer = v8Util.getHiddenValue(global, 'ipc')
2016-01-11 18:40:23 -08:00
2016-03-25 12:57:17 -07:00
ipcRenderer.send = function (...args) {
return binding.send('ipc-message', args)
}
2016-01-11 18:40:23 -08:00
2016-03-25 12:57:17 -07:00
ipcRenderer.sendSync = function (...args) {
return JSON.parse(binding.sendSync('ipc-message-sync', args))
}
2016-01-11 18:40:23 -08:00
2016-03-25 12:57:17 -07:00
ipcRenderer.sendToHost = function (...args) {
return binding.send('ipc-message-host', args)
}
2016-01-11 18:40:23 -08:00
2016-03-25 12:57:17 -07:00
module.exports = ipcRenderer