File tree Expand file tree Collapse file tree 4 files changed +0
-10
lines changed
Expand file tree Collapse file tree 4 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -479,7 +479,6 @@ export const enum EnumeratedHistogram {
479479 SourcesPanelFileOpened = 'DevTools.SourcesPanelFileOpened' ,
480480 NetworkPanelResponsePreviewOpened = 'DevTools.NetworkPanelResponsePreviewOpened' ,
481481 StyleTextCopied = 'DevTools.StyleTextCopied' ,
482- ManifestSectionSelected = 'DevTools.ManifestSectionSelected' ,
483482 CSSHintShown = 'DevTools.CSSHintShown' ,
484483 LighthouseModeRun = 'DevTools.LighthouseModeRun' ,
485484 LighthouseCategoryUsed = 'DevTools.LighthouseCategoryUsed' ,
Original file line number Diff line number Diff line change @@ -290,13 +290,6 @@ export class UserMetrics {
290290 EnumeratedHistogram . StyleTextCopied , value , StyleTextCopied . MAX_VALUE ) ;
291291 }
292292
293- manifestSectionSelected ( sectionTitle : string ) : void {
294- const code =
295- ManifestSectionCodes [ sectionTitle as keyof typeof ManifestSectionCodes ] || ManifestSectionCodes . OtherSection ;
296- InspectorFrontendHostInstance . recordEnumeratedHistogram (
297- EnumeratedHistogram . ManifestSectionSelected , code , ManifestSectionCodes . MAX_VALUE ) ;
298- }
299-
300293 cssHintShown ( type : CSSHintType ) : void {
301294 InspectorFrontendHostInstance . recordEnumeratedHistogram (
302295 EnumeratedHistogram . CSSHintShown , type , CSSHintType . MAX_VALUE ) ;
Original file line number Diff line number Diff line change @@ -423,7 +423,6 @@ const EnumeratedHistogram = {
423423 Language : 'DevTools.Language' ,
424424 LighthouseModeRun : 'DevTools.LighthouseModeRun' ,
425425 LighthouseCategoryUsed : 'DevTools.LighthouseCategoryUsed' ,
426- ManifestSectionSelected : 'DevTools.ManifestSectionSelected' ,
427426 PanelShown : 'DevTools.PanelShown' ,
428427 PanelShownInLocation : 'DevTools.PanelShownInLocation' ,
429428 RecordingAssertion : 'DevTools.RecordingAssertion' ,
Original file line number Diff line number Diff line change @@ -1185,7 +1185,6 @@ export class ManifestChildTreeElement extends ApplicationPanelTreeElement {
11851185 ( this . parent as AppManifestTreeElement ) ?. showManifestView ( ) ;
11861186 this . #sectionElement. scrollIntoView ( ) ;
11871187 UI . ARIAUtils . alert ( i18nString ( UIStrings . onInvokeAlert , { PH1 : this . listItemElement . title } ) ) ;
1188- Host . userMetrics . manifestSectionSelected ( this . listItemElement . title ) ;
11891188 }
11901189 // direct focus to the corresponding element
11911190 onInvokeElementKeydown ( event : KeyboardEvent ) : void {
You can’t perform that action at this time.
0 commit comments