chore: bump electron@8.3.0 (#98266)

This commit is contained in:
Robo
2020-05-20 13:32:02 -07:00
committed by GitHub
parent 627dd8b0ca
commit 820fd4048f
11 changed files with 27 additions and 20 deletions

View File

@@ -59,7 +59,8 @@ export class ProxyAuthHandler extends Disposable {
title: 'VS Code',
webPreferences: {
nodeIntegration: true,
webviewTag: true
webviewTag: true,
enableWebSQL: false
}
};

View File

@@ -44,6 +44,7 @@ export class SharedProcess implements ISharedProcess {
images: false,
nodeIntegration: true,
webgl: false,
enableWebSQL: false,
disableBlinkFeatures: 'Auxclick' // do NOT change, allows us to identify this window as shared-process in the process explorer
}
});

View File

@@ -165,7 +165,8 @@ export class CodeWindow extends Disposable implements ICodeWindow {
webPreferences: {
nodeIntegration: true,
nodeIntegrationInWorker: RUN_TEXTMATE_IN_WORKER,
webviewTag: true
webviewTag: true,
enableWebSQL: false
}
};