2020-05-22 12:46:22 -07:00
|
|
|
import { View } from 'electron';
|
2018-05-07 16:04:33 +09:00
|
|
|
|
2020-03-20 13:28:31 -07:00
|
|
|
const { WebContentsView } = process.electronBinding('web_contents_view');
|
2018-05-07 16:04:33 +09:00
|
|
|
|
2020-03-20 13:28:31 -07:00
|
|
|
Object.setPrototypeOf(WebContentsView.prototype, View.prototype);
|
2018-05-07 16:04:33 +09:00
|
|
|
|
2020-05-22 12:46:22 -07:00
|
|
|
export default WebContentsView;
|