Title: [239817] trunk/Source/WebKit
Revision
239817
Author
bfulg...@apple.com
Date
2019-01-09 20:15:16 -0800 (Wed, 09 Jan 2019)

Log Message

Unreviewed build fix after r239816.

Although EWS had no problem with the patch, I'm seeing build errors on the actual bots.
This patch corrects the problem.

* NetworkProcess/NetworkProcess.cpp:
(WebKit::NetworkProcess::logFrameNavigation):
(WebKit::NetworkProcess::logUserInteraction):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (239816 => 239817)


--- trunk/Source/WebKit/ChangeLog	2019-01-10 03:28:48 UTC (rev 239816)
+++ trunk/Source/WebKit/ChangeLog	2019-01-10 04:15:16 UTC (rev 239817)
@@ -1,5 +1,16 @@
 2019-01-09  Brent Fulgham  <bfulg...@apple.com>
 
+        Unreviewed build fix after r239816.
+
+        Although EWS had no problem with the patch, I'm seeing build errors on the actual bots.
+        This patch corrects the problem.
+
+        * NetworkProcess/NetworkProcess.cpp:
+        (WebKit::NetworkProcess::logFrameNavigation):
+        (WebKit::NetworkProcess::logUserInteraction):
+
+2019-01-09  Brent Fulgham  <bfulg...@apple.com>
+
         Create a WebResourceLoadStatisticsStore attached to the NetworkSession
         https://bugs.webkit.org/show_bug.cgi?id=193261
         <rdar://problem/47158616>

Modified: trunk/Source/WebKit/NetworkProcess/NetworkProcess.cpp (239816 => 239817)


--- trunk/Source/WebKit/NetworkProcess/NetworkProcess.cpp	2019-01-10 03:28:48 UTC (rev 239816)
+++ trunk/Source/WebKit/NetworkProcess/NetworkProcess.cpp	2019-01-10 04:15:16 UTC (rev 239817)
@@ -539,7 +539,7 @@
 
 void NetworkProcess::logFrameNavigation(PAL::SessionID sessionID, const String& targetPrimaryDomain, const String& mainFramePrimaryDomain, const String& sourcePrimaryDomain, const String& targetHost, const String& mainFrameHost, bool isRedirect, bool isMainFrame)
 {
-    if (auto* networkSession = SessionTracker::networkSession(sessionID)) {
+    if (auto* networkSession = this->networkSession(sessionID)) {
         if (auto* resourceLoadStatistics = networkSession->resourceLoadStatistics())
             resourceLoadStatistics->logFrameNavigation(targetPrimaryDomain, mainFramePrimaryDomain, sourcePrimaryDomain, targetHost, mainFrameHost, isRedirect, isMainFrame);
     } else
@@ -548,7 +548,7 @@
 
 void NetworkProcess::logUserInteraction(PAL::SessionID sessionID, const String& targetPrimaryDomain, uint64_t contextId)
 {
-    if (auto* networkSession = SessionTracker::networkSession(sessionID)) {
+    if (auto* networkSession = this->networkSession(sessionID)) {
         if (auto* resourceLoadStatistics = networkSession->resourceLoadStatistics()) {
             resourceLoadStatistics->logUserInteraction(targetPrimaryDomain, [this, contextId] {
                 parentProcessConnection()->send(Messages::NetworkProcessProxy::DidLogUserInteraction(contextId), 0);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to