Changeset 242752 in webkit
- Timestamp:
- Mar 11, 2019, 4:08:29 PM (6 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r242743 r242752 1 2019-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 1 12 2019-03-11 Devin Rousso <drousso@apple.com> 2 13 -
trunk/Source/WebInspectorUI/UserInterface/Controllers/TimelineManager.js
r242741 r242752 123 123 return types; 124 124 125 if (WI.CPUInstrument.supported())126 types.push(WI.TimelineRecord.Type.CPU);127 128 125 if (WI.MemoryInstrument.supported()) 129 126 types.push(WI.TimelineRecord.Type.Memory);
Note:
See TracChangeset
for help on using the changeset viewer.