Refactor sandboxed renderer init scripts
This change gives sandboxed renderer scripts a similar structure to what already exists in the lib/{browser,renderer,common} directories. It also allows sandboxed renderer initialization to share more code with non-sandboxed renderers (ipcRenderer is now imported directly from lib/renderer/api/ipc-renderer).
This commit is contained in:
parent
2b8203e383
commit
cd05834d96
6 changed files with 77 additions and 37 deletions
8
lib/sandboxed_renderer/api/exports/electron.js
Normal file
8
lib/sandboxed_renderer/api/exports/electron.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
Object.defineProperties(exports, {
|
||||
ipcRenderer: {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return require('../ipc-renderer')
|
||||
}
|
||||
}
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue