Skip to content

Commit

Permalink
Fix visionOS build - didRefreshDisplay is private
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=260752
rdar://114478408

Unreviewed build fix. Was caused by f754a3d.

* Source/WebKit/UIProcess/RemoteLayerTree/ios/RemoteLayerTreeDrawingAreaProxyIOS.mm:
(-[WKDisplayLinkHandler timerFired]):

Canonical link: https://commits.webkit.org/267307@main
  • Loading branch information
grorg committed Aug 26, 2023
1 parent 12ec99a commit 6baa279
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ - (void)displayLinkFired:(CADisplayLink *)sender
- (void)timerFired
{
ASSERT(isUIThread());
_drawingAreaProxy->didRefreshDisplay(nullptr);
_drawingAreaProxy->didRefreshDisplay();
}
#endif // ENABLE(TIMER_DRIVEN_DISPLAY_REFRESH_FOR_TESTING)

Expand Down

0 comments on commit 6baa279

Please sign in to comment.