fix: destroy tray on current tick (#18196)

This code was originally added in #6448 to handle an edge case crash in 10.9, and we no longer support 10.9 and therefore no longer need to account for this case.

It addressed the crash, but also created a race condition whereby when a new tray is created the old tray's destroy wouldn't have been fully completed and therefore a new one would be spawned. This fixes that by destroying the tray on the current tick once more.
This commit is contained in:
Shelley Vohr 2019-05-08 15:40:30 -07:00 коммит произвёл GitHub
Родитель 8759e30f04
Коммит b3fcc080d5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 34 добавлений и 16 удалений

Просмотреть файл

@ -60,11 +60,7 @@ Tray::Tray(v8::Isolate* isolate,
InitWith(isolate, wrapper);
}
Tray::~Tray() {
// Destroy the native tray in next tick.
base::ThreadTaskRunnerHandle::Get()->DeleteSoon(FROM_HERE,
tray_icon_.release());
}
Tray::~Tray() = default;
// static
mate::WrappableBase* Tray::New(mate::Handle<NativeImage> image,

Просмотреть файл

@ -9,12 +9,12 @@ describe('tray module', () => {
tray = new Tray(nativeImage.createEmpty())
})
afterEach(() => {
tray.destroy()
tray = null
})
describe('tray.setContextMenu', () => {
afterEach(() => {
tray.destroy()
tray = null
})
it('accepts menu instance', () => {
tray.setContextMenu(new Menu())
})
@ -24,11 +24,24 @@ describe('tray module', () => {
})
})
describe('tray.destroy()', () => {
it('destroys a tray', () => {
expect(tray.isDestroyed()).to.be.false()
tray.destroy()
expect(tray.isDestroyed()).to.be.true()
tray = null
})
})
describe('tray.popUpContextMenu', () => {
afterEach(() => {
tray.destroy()
tray = null
})
before(function () {
if (process.platform !== 'win32') {
this.skip()
}
if (process.platform !== 'win32') this.skip()
})
it('can be called when menu is showing', (done) => {
@ -44,20 +57,29 @@ describe('tray module', () => {
describe('tray.setImage', () => {
it('accepts empty image', () => {
tray.setImage(nativeImage.createEmpty())
tray.destroy()
tray = null
})
})
describe('tray.setPressedImage', () => {
it('accepts empty image', () => {
tray.setPressedImage(nativeImage.createEmpty())
tray.destroy()
tray = null
})
})
describe('tray title get/set', () => {
before(function () {
if (process.platform !== 'darwin') {
this.skip()
}
if (process.platform !== 'darwin') this.skip()
})
afterEach(() => {
tray.destroy()
tray = null
})
it('sets/gets non-empty title', () => {