2020-07-13 16:58:49 +00:00
|
|
|
import { View } from 'electron/main';
|
2018-05-07 07:04:33 +00:00
|
|
|
|
2020-06-23 03:32:45 +00:00
|
|
|
const { WebContentsView } = process._linkedBinding('electron_browser_web_contents_view');
|
2018-05-07 07:04:33 +00:00
|
|
|
|
|
|
|
Object.setPrototypeOf(WebContentsView.prototype, View.prototype);
|
|
|
|
|
2020-05-22 19:46:22 +00:00
|
|
|
export default WebContentsView;
|