mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* finish layering * undo eslint changes * undo * restore -> backup * fix paths * Skip commandLine layers check * fix path * fix tsec path
29 lines
1.3 KiB
TypeScript
29 lines
1.3 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { AbstractEnablePreviewFeatures } from 'sql/workbench/contrib/welcome/browser/abstractEnablePreviewFeatures';
|
|
import { IStorageService } from 'vs/platform/storage/common/storage';
|
|
import { INotificationService } from 'vs/platform/notification/common/notification';
|
|
import { IHostService } from 'vs/workbench/services/host/browser/host';
|
|
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
|
|
|
|
export class BrowserEnablePreviewFeatures extends AbstractEnablePreviewFeatures {
|
|
|
|
constructor(
|
|
@IStorageService storageService: IStorageService,
|
|
@INotificationService notificationService: INotificationService,
|
|
@IHostService hostService: IHostService,
|
|
@IConfigurationService configurationService: IConfigurationService
|
|
) {
|
|
super(storageService, notificationService, hostService, configurationService);
|
|
|
|
this.handlePreviewFeatures();
|
|
}
|
|
|
|
protected async getWindowCount(): Promise<number> {
|
|
return 1;
|
|
}
|
|
}
|