Changeset 242752 in webkit


Ignore:
Timestamp:
Mar 11, 2019, 4:08:29 PM (6 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Editing Timelines shows two CPU Timelines
https://bugs.webkit.org/show_bug.cgi?id=195578

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2019-03-11
Reviewed by Devin Rousso.

  • UserInterface/Controllers/TimelineManager.js:

(WI.TimelineManager.availableTimelineTypes):
The CPU Instrument is already in the default list.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r242743 r242752  
     12019-03-11  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Editing Timelines shows two CPU Timelines
     4        https://bugs.webkit.org/show_bug.cgi?id=195578
     5
     6        Reviewed by Devin Rousso.
     7
     8        * UserInterface/Controllers/TimelineManager.js:
     9        (WI.TimelineManager.availableTimelineTypes):
     10        The CPU Instrument is already in the default list.
     11
    1122019-03-11  Devin Rousso  <drousso@apple.com>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Controllers/TimelineManager.js

    r242741 r242752  
    123123            return types;
    124124
    125         if (WI.CPUInstrument.supported())
    126             types.push(WI.TimelineRecord.Type.CPU);
    127 
    128125        if (WI.MemoryInstrument.supported())
    129126            types.push(WI.TimelineRecord.Type.Memory);
Note: See TracChangeset for help on using the changeset viewer.