Title: [246180] trunk/Source/WebInspectorUI
Revision
246180
Author
[email protected]
Date
2019-06-06 16:56:09 -0700 (Thu, 06 Jun 2019)

Log Message

Web Inspector: Timelines: remove always disabled details sidebar navigation item
https://bugs.webkit.org/show_bug.cgi?id=198393

Reviewed by Timothy Hatcher.

* UserInterface/Views/TimelineTabContentView.js:
(WI.TimelineTabContentView):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (246179 => 246180)


--- trunk/Source/WebInspectorUI/ChangeLog	2019-06-06 23:37:12 UTC (rev 246179)
+++ trunk/Source/WebInspectorUI/ChangeLog	2019-06-06 23:56:09 UTC (rev 246180)
@@ -1,5 +1,15 @@
 2019-06-06  Devin Rousso  <[email protected]>
 
+        Web Inspector: Timelines: remove always disabled details sidebar navigation item
+        https://bugs.webkit.org/show_bug.cgi?id=198393
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/TimelineTabContentView.js:
+        (WI.TimelineTabContentView):
+
+2019-06-06  Devin Rousso  <[email protected]>
+
         Web Inspector: REGRESSION(r245833): Timelines: CPU: _javascript_ label is missing and _javascript_ section of pie chart is black
         https://bugs.webkit.org/show_bug.cgi?id=198627
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineTabContentView.js (246179 => 246180)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineTabContentView.js	2019-06-06 23:37:12 UTC (rev 246179)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineTabContentView.js	2019-06-06 23:56:09 UTC (rev 246180)
@@ -28,10 +28,8 @@
     constructor(identifier)
     {
         let tabBarItem = WI.GeneralTabBarItem.fromTabInfo(WI.TimelineTabContentView.tabInfo());
-        let detailsSidebarPanelConstructors = [WI.ResourceDetailsSidebarPanel, WI.ProbeDetailsSidebarPanel];
+        super(identifier || "timeline", "timeline", tabBarItem);
 
-        super(identifier || "timeline", "timeline", tabBarItem, null, detailsSidebarPanelConstructors);
-
         // Maintain an invisible tree outline containing tree elements for all recordings.
         // The visible recording's tree element is selected when the content view changes.
         this._recordingTreeElementMap = new Map;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to