d87b3ead76
* chore: remove promisification deprecation callbacks * update docs * fix smoke test * fix executejs issue * cleanup leftovers * fix webContents.executeJavaScript tests * cleanup WebContents.prototype.takeHeapSnapshot * fix "sets arbitrary webContents as devtools" test * fix executeJavaScriptInFrame related tests
24 lines
622 B
JavaScript
24 lines
622 B
JavaScript
'use strict'
|
|
|
|
const { EventEmitter } = require('events')
|
|
const { app, deprecate } = require('electron')
|
|
const { fromPartition, Session, Cookies, NetLog, Protocol } = process.electronBinding('session')
|
|
|
|
// Public API.
|
|
Object.defineProperties(exports, {
|
|
defaultSession: {
|
|
enumerable: true,
|
|
get () { return fromPartition('') }
|
|
},
|
|
fromPartition: {
|
|
enumerable: true,
|
|
value: fromPartition
|
|
}
|
|
})
|
|
|
|
Object.setPrototypeOf(Session.prototype, EventEmitter.prototype)
|
|
Object.setPrototypeOf(Cookies.prototype, EventEmitter.prototype)
|
|
|
|
Session.prototype._init = function () {
|
|
app.emit('session-created', this)
|
|
}
|