RESOLVED FIXED 126667
Web Inspector: Update the current WebInspector.TimelineView when time range changes
https://bugs.webkit.org/show_bug.cgi?id=126667
Summary Web Inspector: Update the current WebInspector.TimelineView when time range c...
Timothy Hatcher
Reported 2014-01-08 14:50:28 PST
When the TimelineOverview time selection changes, update the current TimelineView.
Attachments
Patch (15.09 KB, patch)
2014-01-08 15:06 PST, Timothy Hatcher
joepeck: review+
timothy: commit-queue-
Timothy Hatcher
Comment 1 2014-01-08 15:06:52 PST
Radar WebKit Bug Importer
Comment 2 2014-01-08 15:07:23 PST
Radar WebKit Bug Importer
Comment 3 2014-01-08 15:08:33 PST
Joseph Pecoraro
Comment 4 2014-01-08 15:20:39 PST
Comment on attachment 220671 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=220671&action=review r=me > Source/WebInspectorUI/UserInterface/TimelineContentView.js:196 > + var endTime = Math.max(WebInspector.timelineManager.recording.endTime || startTime, startTime); Hmm, this doesn't sound right. Maybe the "|| startTime" should just go away, no? > Source/WebInspectorUI/UserInterface/TimelineOverview.js:167 > + // Update all ruler element to the new required width. Typo: "all ruler" => "ruler" > Source/WebInspectorUI/UserInterface/TimelineView.js:169 > + this._scheduledLayoutUpdateIdentifier = requestAnimationFrame(this.updateLayout.bind(this)); How often will we updateLayout? Maybe we should cache an updateLayout.bind(this) to prevent function creation churn?
Timothy Hatcher
Comment 5 2014-01-09 13:16:47 PST
Comment on attachment 220671 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=220671&action=review >> Source/WebInspectorUI/UserInterface/TimelineContentView.js:196 >> + var endTime = Math.max(WebInspector.timelineManager.recording.endTime || startTime, startTime); > > Hmm, this doesn't sound right. Maybe the "|| startTime" should just go away, no? I meant to revet this line. At one point I had other doe in there for the Math.max. Now WebInspector.timelineManager.recording.endTime is always what I want. >> Source/WebInspectorUI/UserInterface/TimelineView.js:169 >> + this._scheduledLayoutUpdateIdentifier = requestAnimationFrame(this.updateLayout.bind(this)); > > How often will we updateLayout? Maybe we should cache an updateLayout.bind(this) to prevent function creation churn? Good idea. I'll do that in a follow up with all the places this happens.
Timothy Hatcher
Comment 6 2014-01-20 19:03:18 PST
Note You need to log in before you can comment on or make changes to this bug.