Changeset 243679 in webkit
- Timestamp:
- Mar 30, 2019, 9:38:17 AM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
page/ResourceUsageThread.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r243678 r243679 1 2019-03-30 Joseph Pecoraro <pecoraro@apple.com> 2 3 Web Inspector: JSC Sampling Profiler thread not getting subtracted in CPU Usage Timeline 4 https://bugs.webkit.org/show_bug.cgi?id=196419 5 <rdar://problem/49444023> 6 7 Reviewed by Devin Rousso. 8 9 * page/ResourceUsageThread.cpp: 10 (WebCore::ResourceUsageThread::addObserver): 11 We forgot to call the function that would setup platform state 12 allowing us to subtract out the sampling profiler thread. 13 1 14 2019-03-30 Zalan Bujtas <zalan@apple.com> 2 15 -
trunk/Source/WebCore/page/ResourceUsageThread.cpp
r240868 r243679 59 59 resourceUsageThread.recomputeCollectionMode(); 60 60 61 if (wasEmpty) 61 if (wasEmpty) { 62 resourceUsageThread.platformSaveStateBeforeStarting(); 62 63 resourceUsageThread.m_condition.notifyAll(); 64 } 63 65 } 64 66 }
Note:
See TracChangeset
for help on using the changeset viewer.