electron/lib/renderer/api/web-frame.js

14 lines
357 B
JavaScript
Raw Normal View History

2016-03-25 19:57:17 +00:00
'use strict'
2016-01-12 02:40:23 +00:00
2016-08-02 12:02:28 +00:00
const {EventEmitter} = require('events')
const {webFrame, WebFrame} = process.atomBinding('web_frame')
2016-01-12 02:40:23 +00:00
2016-08-02 12:02:28 +00:00
// WebFrame is an EventEmitter.
Object.setPrototypeOf(WebFrame.prototype, EventEmitter.prototype)
EventEmitter.call(webFrame)
2016-01-12 02:40:23 +00:00
// Lots of webview would subscribe to webFrame's events.
2016-03-25 19:57:17 +00:00
webFrame.setMaxListeners(0)
2016-01-12 02:40:23 +00:00
2016-03-25 19:57:17 +00:00
module.exports = webFrame