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

22 lines
516 B
JavaScript
Raw Normal View History

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