2018-09-22 12:28:50 +00:00
|
|
|
'use strict'
|
|
|
|
|
2018-09-13 16:10:51 +00:00
|
|
|
const { EventEmitter } = require('events')
|
2019-01-17 17:05:10 +00:00
|
|
|
const { app, deprecate } = require('electron')
|
2019-03-18 19:37:06 +00:00
|
|
|
const { fromPartition, Session, Cookies, NetLog, Protocol } = process.electronBinding('session')
|
2016-06-01 01:42:24 +00:00
|
|
|
|
2016-08-01 10:35:51 +00:00
|
|
|
// Public API.
|
2016-07-12 12:01:49 +00:00
|
|
|
Object.defineProperties(exports, {
|
|
|
|
defaultSession: {
|
|
|
|
enumerable: true,
|
|
|
|
get () { return fromPartition('') }
|
|
|
|
},
|
|
|
|
fromPartition: {
|
|
|
|
enumerable: true,
|
|
|
|
value: fromPartition
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
2016-03-24 20:15:04 +00:00
|
|
|
})
|
2016-06-01 01:42:24 +00:00
|
|
|
|
2016-08-02 11:38:35 +00:00
|
|
|
Object.setPrototypeOf(Session.prototype, EventEmitter.prototype)
|
2016-09-21 23:24:03 +00:00
|
|
|
Object.setPrototypeOf(Cookies.prototype, EventEmitter.prototype)
|
2016-08-02 11:38:35 +00:00
|
|
|
|
|
|
|
Session.prototype._init = function () {
|
|
|
|
app.emit('session-created', this)
|
|
|
|
}
|
2019-02-14 13:40:24 +00:00
|
|
|
|
2019-03-08 17:02:30 +00:00
|
|
|
Session.prototype.clearStorageData = deprecate.promisify(Session.prototype.clearStorageData)
|
2019-03-08 18:26:17 +00:00
|
|
|
Session.prototype.clearHostResolverCache = deprecate.promisify(Session.prototype.clearHostResolverCache)
|
2019-03-08 20:51:12 +00:00
|
|
|
Session.prototype.resolveProxy = deprecate.promisify(Session.prototype.resolveProxy)
|
|
|
|
Session.prototype.setProxy = deprecate.promisify(Session.prototype.setProxy)
|
2019-03-08 22:42:03 +00:00
|
|
|
Session.prototype.getCacheSize = deprecate.promisify(Session.prototype.getCacheSize)
|
|
|
|
Session.prototype.clearCache = deprecate.promisify(Session.prototype.clearCache)
|
2019-03-09 02:41:42 +00:00
|
|
|
Session.prototype.clearAuthCache = deprecate.promisify(Session.prototype.clearAuthCache)
|
2019-03-14 15:11:01 +00:00
|
|
|
Session.prototype.getBlobData = deprecate.promisifyMultiArg(Session.prototype.getBlobData)
|
2019-03-08 17:02:30 +00:00
|
|
|
|
2019-02-14 13:40:24 +00:00
|
|
|
Cookies.prototype.flushStore = deprecate.promisify(Cookies.prototype.flushStore)
|
|
|
|
Cookies.prototype.get = deprecate.promisify(Cookies.prototype.get)
|
|
|
|
Cookies.prototype.remove = deprecate.promisify(Cookies.prototype.remove)
|
|
|
|
Cookies.prototype.set = deprecate.promisify(Cookies.prototype.set)
|
|
|
|
|
2019-02-19 10:48:27 +00:00
|
|
|
NetLog.prototype.stopLogging = deprecate.promisify(NetLog.prototype.stopLogging)
|
|
|
|
|
2019-02-14 13:40:24 +00:00
|
|
|
Protocol.prototype.isProtocolHandled = deprecate.promisify(Protocol.prototype.isProtocolHandled)
|