Merge from vscode f2d41726ba5a0e8abfe61b2c743022b1b6372010 (#7415)

* Merge from vscode f2d41726ba5a0e8abfe61b2c743022b1b6372010

* add missing files
This commit is contained in:
Anthony Dresser
2019-09-27 23:30:36 -07:00
committed by GitHub
parent d0fb6de390
commit bca7c8e6bd
123 changed files with 1704 additions and 1330 deletions

View File

@@ -15,6 +15,7 @@ import { LogLevel } from 'vs/platform/log/common/log';
import { IUpdateProvider, IUpdate } from 'vs/workbench/services/update/browser/updateService';
import { Event, Emitter } from 'vs/base/common/event';
import { Disposable, IDisposable } from 'vs/base/common/lifecycle';
import { IWorkspaceProvider, IWorkspace } from 'vs/workbench/services/host/browser/browserHostService';
interface IWorkbenchConstructionOptions {
@@ -36,14 +37,9 @@ interface IWorkbenchConstructionOptions {
webviewEndpoint?: string;
/**
* Experimental: An optional folder that is set as workspace context for the workbench.
* Experimental: a handler for opening workspaces and providing the initial workspace.
*/
folderUri?: URI;
/**
* Experimental: An optional workspace that is set as workspace context for the workbench.
*/
workspaceUri?: URI;
workspaceProvider?: IWorkspaceProvider;
/**
* Experimental: The userDataProvider is used to handle user specific application
@@ -91,7 +87,6 @@ interface IWorkbenchConstructionOptions {
*/
updateProvider?: IUpdateProvider;
/**
* Experimental: Support adding additional properties to telemetry.
*/
@@ -127,6 +122,10 @@ export {
IDisposable,
Disposable,
// Workspace
IWorkspace,
IWorkspaceProvider,
// FileSystem
IFileSystemProvider,
FileSystemProviderCapabilities,