@@ -23,6 +23,7 @@ import { OpenFolderAction, OpenFileAction, OpenFileFolderAction } from 'vs/workb
2323import { isMacintosh } from 'vs/base/common/platform' ;
2424import { isCodeEditor } from 'vs/editor/browser/editorBrowser' ;
2525import { IStorageService , StorageScope } from 'vs/platform/storage/common/storage' ;
26+ import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry' ;
2627
2728const debugStartLanguageKey = 'debugStartLanguage' ;
2829const CONTEXT_DEBUG_START_LANGUAGE = new RawContextKey < string > ( debugStartLanguageKey , undefined ) ;
@@ -48,9 +49,10 @@ export class StartView extends ViewPane {
4849 @IInstantiationService instantiationService : IInstantiationService ,
4950 @IViewDescriptorService viewDescriptorService : IViewDescriptorService ,
5051 @IOpenerService openerService : IOpenerService ,
51- @IStorageService storageSevice : IStorageService
52+ @IStorageService storageSevice : IStorageService ,
53+ @ITelemetryService telemetryService : ITelemetryService ,
5254 ) {
53- super ( { ...( options as IViewPaneOptions ) , ariaHeaderLabel : localize ( 'debugStart' , "Debug Start Section" ) } , keybindingService , contextMenuService , configurationService , contextKeyService , viewDescriptorService , instantiationService , openerService , themeService ) ;
55+ super ( { ...( options as IViewPaneOptions ) , ariaHeaderLabel : localize ( 'debugStart' , "Debug Start Section" ) } , keybindingService , contextMenuService , configurationService , contextKeyService , viewDescriptorService , instantiationService , openerService , themeService , telemetryService ) ;
5456
5557 this . debugStartLanguageContext = CONTEXT_DEBUG_START_LANGUAGE . bindTo ( contextKeyService ) ;
5658 this . debuggerInterestedContext = CONTEXT_DEBUGGER_INTERESTED_IN_ACTIVE_EDITOR . bindTo ( contextKeyService ) ;
0 commit comments