2018-11-21 13:39:59 +00:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const electron = require('electron')
|
|
|
|
|
|
|
|
const { View } = electron
|
2019-03-18 19:37:06 +00:00
|
|
|
const { ResizeArea } = process.electronBinding('resize_area')
|
2018-11-21 13:39:59 +00:00
|
|
|
|
|
|
|
Object.setPrototypeOf(ResizeArea.prototype, View.prototype)
|
|
|
|
|
|
|
|
ResizeArea.prototype._init = function () {
|
|
|
|
// Call parent class's _init.
|
|
|
|
View.prototype._init.call(this)
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = ResizeArea
|