Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sandboxExtensionService.ts « electron-sandbox « extensions « services « workbench « vs « src - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea51d7abc8f60d5039aa6921328e88c8be2d17ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

import { registerSingleton } from 'vs/platform/instantiation/common/extensions';
import { IExtensionService } from 'vs/workbench/services/extensions/common/extensions';
import { ElectronExtensionService } from 'vs/workbench/services/extensions/electron-sandbox/electronExtensionService';

export class SandboxExtensionService extends ElectronExtensionService {
}

registerSingleton(IExtensionService, SandboxExtensionService);