mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
ext host - extend *Shape classes
This commit is contained in:
@@ -6,13 +6,15 @@
|
||||
|
||||
import {IStatusbarService, StatusbarAlignment as MainThreadStatusBarAlignment} from 'vs/platform/statusbar/common/statusbar';
|
||||
import {IDisposable} from 'vs/base/common/lifecycle';
|
||||
import {MainThreadStatusBarShape} from './extHost.protocol';
|
||||
|
||||
export class MainThreadStatusBar {
|
||||
export class MainThreadStatusBar extends MainThreadStatusBarShape {
|
||||
private mapIdToDisposable: { [id: number]: IDisposable };
|
||||
|
||||
constructor(
|
||||
@IStatusbarService private statusbarService: IStatusbarService
|
||||
) {
|
||||
super();
|
||||
this.mapIdToDisposable = Object.create(null);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user