More plugin -> extension

This commit is contained in:
Alex Dima
2016-03-01 18:54:25 +01:00
parent 533844ab8d
commit a3bdfe7ede
19 changed files with 78 additions and 78 deletions

View File

@@ -25,10 +25,10 @@ export class ExtHostCommands {
private _commands: { [n: string]: CommandHandler } = Object.create(null);
private _proxy: MainThreadCommands;
private _pluginHostEditors: ExtHostEditors;
private _extHostEditors: ExtHostEditors;
constructor(@IThreadService threadService: IThreadService) {
this._pluginHostEditors = threadService.getRemotable(ExtHostEditors);
this._extHostEditors = threadService.getRemotable(ExtHostEditors);
this._proxy = threadService.getRemotable(MainThreadCommands);
}