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

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/vs/base/common/platform.ts')
-rw-r--r--src/vs/base/common/platform.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/vs/base/common/platform.ts b/src/vs/base/common/platform.ts
index b2e6fef5f92..e0ea1d62c64 100644
--- a/src/vs/base/common/platform.ts
+++ b/src/vs/base/common/platform.ts
@@ -43,7 +43,6 @@ export interface INodeProcess {
versions?: {
electron?: string;
};
- sandboxed?: boolean;
type?: string;
cwd: () => string;
}
@@ -65,7 +64,6 @@ if (typeof globals.vscode !== 'undefined' && typeof globals.vscode.process !== '
const isElectronProcess = typeof nodeProcess?.versions?.electron === 'string';
const isElectronRenderer = isElectronProcess && nodeProcess?.type === 'renderer';
-export const isElectronSandboxed = isElectronRenderer && nodeProcess?.sandboxed;
interface INavigator {
userAgent: string;