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)
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-13 04:46:13 +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
|