2020-03-20 20:28:31 +00:00
|
|
|
'use strict';
|
2018-09-22 12:28:50 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
const { EventEmitter } = require('events');
|
|
|
|
const { deprecate } = require('electron');
|
|
|
|
const { Tray } = process.electronBinding('tray');
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
Object.setPrototypeOf(Tray.prototype, EventEmitter.prototype);
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
module.exports = Tray;
|