RESOLVED FIXED 217338
ChromeClient::needsImmediateRenderingUpdate() only exists to work around a WebKit1 bug
https://bugs.webkit.org/show_bug.cgi?id=217338
Summary ChromeClient::needsImmediateRenderingUpdate() only exists to work around a We...
Simon Fraser (smfr)
Reported 2020-10-05 14:36:25 PDT
ChromeClient::needsImmediateRenderingUpdate() only existing to work around a WebKit1 bug
Attachments
Patch (6.29 KB, patch)
2020-10-05 14:38 PDT, Simon Fraser (smfr)
sabouhallawa: review+
Simon Fraser (smfr)
Comment 1 2020-10-05 14:38:31 PDT
Said Abou-Hallawa
Comment 2 2020-10-05 14:55:34 PDT
Comment on attachment 410563 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=410563&action=review > Source/WebCore/ChangeLog:9 > + because the RunLoopObserver was always invalidate at the end of the callback. invalidating? or calling invalidate()? > Source/WebKitLegacy/mac/WebView/WebViewData.h:125 > + bool m_insideCallback { false }; > + bool m_rescheduledInsideCallback { false }; I think using two booleans can be a little bit difficult to understand. Can't we use enum for the states of these two members? enum class SchedulingState { None, InsideCallback, AlreadyRescheduled } // Maybe the names need to be changed. > Source/WebKitLegacy/mac/WebView/WebViewData.mm:129 > + SetForScope<bool> insideCallbackScope(m_insideCallback, true); > + m_rescheduledInsideCallback = false; This can be changed to SetForScope<SchedulingState> change(m_schedulingState, SchedulingState::InsideCallback);
Simon Fraser (smfr)
Comment 3 2020-10-05 17:53:43 PDT
Radar WebKit Bug Importer
Comment 4 2020-10-05 17:54:17 PDT
Note You need to log in before you can comment on or make changes to this bug.