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