sandbox - get rid of IMainProcessService2

This commit is contained in:
Benjamin Pasero
2020-05-23 14:33:57 +02:00
parent a5554716a0
commit 2c2750be08
17 changed files with 61 additions and 58 deletions

View File

@@ -5,7 +5,7 @@
import { IURLService, IURLHandler, IOpenURLOptions } from 'vs/platform/url/common/url';
import { URI, UriComponents } from 'vs/base/common/uri';
import { IMainProcessService2 } from 'vs/platform/ipc/electron-sandbox/mainProcessService';
import { IMainProcessService } from 'vs/platform/ipc/common/mainProcessService';
import { URLHandlerChannel } from 'vs/platform/url/common/urlIpc';
import { URLService } from 'vs/platform/url/node/urlService';
import { IOpenerService, IOpener, matchesScheme } from 'vs/platform/opener/common/opener';
@@ -26,7 +26,7 @@ export class RelayURLService extends URLService implements IURLHandler, IOpener
private urlService: IURLService;
constructor(
@IMainProcessService2 mainProcessService: IMainProcessService2,
@IMainProcessService mainProcessService: IMainProcessService,
@IOpenerService openerService: IOpenerService,
@IWorkbenchEnvironmentService private readonly environmentService: INativeWorkbenchEnvironmentService,
@IElectronService private electronService: IElectronService