electron/lib/browser/api/web-contents-view.js

16 lines
360 B
JavaScript
Raw Normal View History

2018-05-07 07:04:33 +00:00
'use strict'
const electron = require('electron')
const {View} = electron
const {WebContentsView} = process.atomBinding('web_contents_view')
Object.setPrototypeOf(WebContentsView.prototype, View.prototype)
WebContentsView.prototype._init = function () {
// Call parent class's _init.
View.prototype._init.call(this)
}
module.exports = WebContentsView