(tabId: string, delayMs: number)
| 527 | } |
| 528 | |
| 529 | private removeTabViewLater(tabId: string, delayMs: number) { |
| 530 | setTimeout(() => { |
| 531 | this.removeTabView(tabId, false); |
| 532 | }, delayMs); |
| 533 | } |
| 534 | |
| 535 | // the queue and this function are used to serialize operations that update the window contents view |
| 536 | // processActionQueue will replace [1] if it is already set |
no test coverage detected