Skip to content

Commit cbeff45

Browse files
author
Benjamin Pasero
committed
web - fix missing ext host tunnel service
1 parent d4789ac commit cbeff45

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/vs/workbench/services/extensions/worker/extHost.services.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import { ExtHostExtensionService } from 'vs/workbench/api/worker/extHostExtensio
2121
import { ServiceIdentifier } from 'vs/platform/instantiation/common/instantiation';
2222
import { ILogService } from 'vs/platform/log/common/log';
2323
import { ExtHostLogService } from 'vs/workbench/api/worker/extHostLogService';
24+
import { IExtHostTunnelService } from 'vs/workbench/api/common/extHostTunnelService';
2425

2526
// register singleton services
2627
registerSingleton(ILogService, ExtHostLogService);
@@ -52,6 +53,5 @@ function NotImplementedProxy<T>(name: ServiceIdentifier<T>): { new(): T } {
5253
registerSingleton(IExtHostTerminalService, WorkerExtHostTerminalService);
5354
registerSingleton(IExtHostTask, WorkerExtHostTask);
5455
registerSingleton(IExtHostDebugService, WorkerExtHostDebugService);
55-
registerSingleton(IExtensionStoragePaths, class extends NotImplementedProxy(IExtensionStoragePaths) {
56-
whenReady = Promise.resolve();
57-
});
56+
registerSingleton(IExtensionStoragePaths, class extends NotImplementedProxy(IExtensionStoragePaths) { whenReady = Promise.resolve(); });
57+
registerSingleton(IExtHostTunnelService, class extends NotImplementedProxy(IExtHostTunnelService) { });

0 commit comments

Comments
 (0)