Title: [276511] branches/safari-611-branch/Source/WebKit/UIProcess/Network/NetworkProcessProxy.cpp
Revision
276511
Author
[email protected]
Date
2021-04-23 12:21:24 -0700 (Fri, 23 Apr 2021)

Log Message

Unreviewed build fix.

WebKit2/UIProcess/Network/NetworkProcessProxy.cpp:127:17: error: use of undeclared identifier 'defaultProcess'

Modified Paths

Diff

Modified: branches/safari-611-branch/Source/WebKit/UIProcess/Network/NetworkProcessProxy.cpp (276510 => 276511)


--- branches/safari-611-branch/Source/WebKit/UIProcess/Network/NetworkProcessProxy.cpp	2021-04-23 19:06:25 UTC (rev 276510)
+++ branches/safari-611-branch/Source/WebKit/UIProcess/Network/NetworkProcessProxy.cpp	2021-04-23 19:21:24 UTC (rev 276511)
@@ -124,8 +124,8 @@
 
 void NetworkProcessProxy::didTerminate()
 {
-    if (this == defaultProcess().get())
-        defaultProcess() = nullptr;
+    if (this == defaultNetworkProcess().get())
+        defaultNetworkProcess() = nullptr;
 }
 
 void NetworkProcessProxy::sendCreationParametersToNewProcess()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to