Skip to content

Commit

Permalink
Cherry-pick b7827a5. rdar://103273163
Browse files Browse the repository at this point in the history
    Fix the build after 257681@main
    https://bugs.webkit.org/show_bug.cgi?id=249184
    rdar://103273163

    Unreviewed build fix.

    * Source/WebKit/UIProcess/Network/NetworkProcessProxy.cpp:
    (WebKit::NetworkProcessProxy::getWindowSceneIdentifierForPaymentPresentation):

    Canonical link: https://commits.webkit.org/257763@main

Canonical link: https://commits.webkit.org/257698.1@safari-7615.1.15-branch
  • Loading branch information
hortont424 authored and alancoon committed Dec 12, 2022
1 parent b447da9 commit 254021a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/WebKit/UIProcess/Network/NetworkProcessProxy.cpp
Expand Up @@ -1290,7 +1290,7 @@ void NetworkProcessProxy::setManagedDomainsForResourceLoadStatistics(PAL::Sessio
#if ENABLE(APPLE_PAY_REMOTE_UI_USES_SCENE)
void NetworkProcessProxy::getWindowSceneIdentifierForPaymentPresentation(WebPageProxyIdentifier webPageProxyIdentifier, CompletionHandler<void(const String&)>&& completionHandler)
{
auto* page = WebProcessProxy::webPage(webPageProxyIdentifier);
auto page = WebProcessProxy::webPage(webPageProxyIdentifier);
if (!page) {
completionHandler(nullString());
return;
Expand Down

0 comments on commit 254021a

Please sign in to comment.