@@ -1004,10 +1004,6 @@ export class ApplicationPanelSidebar extends UI.Widget.VBox implements SDK.Targe
10041004 this . resourcesSection . revealAndSelectFrame ( frame ) ;
10051005 }
10061006
1007- private innerShowView ( view : UI . Widget . Widget ) : void {
1008- this . panel . showView ( view ) ;
1009- }
1010-
10111007 showPreloadingRuleSetView ( revealInfo : PreloadingHelper . PreloadingForward . RuleSetView ) : void {
10121008 if ( this . preloadingSummaryTreeElement ) {
10131009 this . preloadingSummaryTreeElement . expandAndRevealRuleSet ( revealInfo ) ;
@@ -2170,7 +2166,6 @@ export class ResourcesSection implements SDK.TargetManager.Observer {
21702166export class FrameTreeElement extends ApplicationPanelTreeElement {
21712167 private section : ResourcesSection ;
21722168 private frame : SDK . ResourceTreeModel . ResourceTreeFrame ;
2173- private frameId : string ;
21742169 private readonly categoryElements : Map < string , ExpandableApplicationPanelTreeElement > ;
21752170 private readonly treeElementForResource : Map < string , FrameResourceTreeElement > ;
21762171 private treeElementForWindow : Map < Protocol . Target . TargetID , FrameWindowTreeElement > ;
@@ -2182,7 +2177,6 @@ export class FrameTreeElement extends ApplicationPanelTreeElement {
21822177 super ( section . panel , '' , false , 'frame' ) ;
21832178 this . section = section ;
21842179 this . frame = frame ;
2185- this . frameId = frame . id ;
21862180 this . categoryElements = new Map ( ) ;
21872181 this . treeElementForResource = new Map ( ) ;
21882182 this . treeElementForWindow = new Map ( ) ;
@@ -2207,7 +2201,6 @@ export class FrameTreeElement extends ApplicationPanelTreeElement {
22072201 this . setLeadingIcons ( [ icon ] ) ;
22082202 this . invalidateChildren ( ) ;
22092203
2210- this . frameId = frame . id ;
22112204 if ( this . title !== frame . displayName ( ) ) {
22122205 this . title = frame . displayName ( ) ;
22132206 UI . ARIAUtils . setLabel ( this . listItemElement , this . title ) ;
0 commit comments