Skip to content

Commit

Permalink
Unreviewed build fix after 276158@main.
Browse files Browse the repository at this point in the history
* Source/WebKit/UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::hasAllowedToRunInTheBackgroundActivity const):

Canonical link: https://commits.webkit.org/276160@main
  • Loading branch information
cdumez committed Mar 15, 2024
1 parent 0cc86c2 commit 3e55186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/WebKit/UIProcess/WebPageProxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6654,7 +6654,7 @@ void WebPageProxy::processIsNoLongerAssociatedWithPage(WebProcessProxy& process)

bool WebPageProxy::hasAllowedToRunInTheBackgroundActivity() const
{
return internals().pageAllowedToRunInTheBackgroundActivityDueToTitleChanges || internals().pageAllowedToRunInTheBackgroundActivityDueToNotifications;
return internals().pageAllowedToRunInTheBackgroundToken || internals().pageAllowedToRunInTheBackgroundActivityDueToNotifications;
}

void WebPageProxy::didReceiveTitleForFrame(FrameIdentifier frameID, const String& title, const UserData& userData)
Expand Down

0 comments on commit 3e55186

Please sign in to comment.