Expose TopLevelWindow to JavaScript

This commit is contained in:
Cheng Zhao 2018-04-17 16:29:16 +09:00
parent cfed9fa4b9
commit 71ebd99dfa
6 changed files with 24 additions and 2 deletions

View file

@ -0,0 +1,9 @@
'use strict'
const {EventEmitter} = require('events')
const {TopLevelWindow} = process.atomBinding('top_level_window')
const v8Util = process.atomBinding('v8_util')
Object.setPrototypeOf(TopLevelWindow.prototype, EventEmitter.prototype)
module.exports = TopLevelWindow