2018-05-07 14:52:25 +09:00
|
|
|
'use strict'
|
|
|
|
|
2018-09-14 02:10:51 +10:00
|
|
|
const { EventEmitter } = require('events')
|
2019-03-18 12:37:06 -07:00
|
|
|
const { View } = process.electronBinding('view')
|
2018-05-07 14:52:25 +09:00
|
|
|
|
|
|
|
Object.setPrototypeOf(View.prototype, EventEmitter.prototype)
|
|
|
|
|
2018-05-08 14:47:26 +09:00
|
|
|
View.prototype._init = function () {
|
|
|
|
}
|
|
|
|
|
2018-05-07 14:52:25 +09:00
|
|
|
module.exports = View
|