diff --git a/src/vs/workbench/electron-browser/shell.ts b/src/vs/workbench/electron-browser/shell.ts index e4ac4c49e2a1ed725a0960ab08626b0caef8478c..2fbca44bee397072aa6641851fc23a90f892b128 100644 --- a/src/vs/workbench/electron-browser/shell.ts +++ b/src/vs/workbench/electron-browser/shell.ts @@ -55,7 +55,7 @@ import { IMarkerService } from 'vs/platform/markers/common/markers'; import { IEnvironmentService } from 'vs/platform/environment/common/environment'; import { ISearchService } from 'vs/platform/search/common/search'; import { ICommandService } from 'vs/platform/commands/common/commands'; -import { CommandService } from 'vs/platform/commands/common/commandService'; +import { CommandService } from 'vs/workbench/services/commands/common/commandService'; import { IWorkspaceContextService, WorkbenchState } from 'vs/platform/workspace/common/workspace'; import { IExtensionService } from 'vs/platform/extensions/common/extensions'; import { WorkbenchModeServiceImpl } from 'vs/workbench/services/mode/common/workbenchModeService'; diff --git a/src/vs/platform/commands/common/commandService.ts b/src/vs/workbench/services/commands/common/commandService.ts similarity index 100% rename from src/vs/platform/commands/common/commandService.ts rename to src/vs/workbench/services/commands/common/commandService.ts diff --git a/src/vs/platform/commands/test/commandService.test.ts b/src/vs/workbench/services/commands/test/common/commandService.test.ts similarity index 98% rename from src/vs/platform/commands/test/commandService.test.ts rename to src/vs/workbench/services/commands/test/common/commandService.test.ts index 1a355d9eed5e77a9514109404d8d75f9ae15f2a9..32fa19036526f40eb1862c56b9941505179700d9 100644 --- a/src/vs/platform/commands/test/commandService.test.ts +++ b/src/vs/workbench/services/commands/test/common/commandService.test.ts @@ -8,7 +8,7 @@ import * as assert from 'assert'; import { IDisposable } from 'vs/base/common/lifecycle'; import { TPromise } from 'vs/base/common/winjs.base'; import { CommandsRegistry } from 'vs/platform/commands/common/commands'; -import { CommandService } from 'vs/platform/commands/common/commandService'; +import { CommandService } from 'vs/workbench/services/commands/common/commandService'; import { IExtensionService, ExtensionPointContribution, IExtensionDescription, ProfileSession } from 'vs/platform/extensions/common/extensions'; import { InstantiationService } from 'vs/platform/instantiation/common/instantiationService'; import { IExtensionPoint } from 'vs/platform/extensions/common/extensionsRegistry';