Title: [270299] trunk/Source/WebKit
Revision
270299
Author
[email protected]
Date
2020-12-01 07:53:23 -0800 (Tue, 01 Dec 2020)

Log Message

ITP logging mixes up the UI process ITP state with the Settings ITP state
https://bugs.webkit.org/show_bug.cgi?id=219359
<rdar://problem/71808489>

Reviewed by Youenn Fablet.

Update an ITP logging message in the network process which mixes up
the variables for the ITP state passed from the UI process and the
ITP value from Settings.

No new tests, this only updates an incorrect logging message.

* NetworkProcess/cocoa/NetworkSessionCocoa.mm:
(WebKit::activateSessionCleanup):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (270298 => 270299)


--- trunk/Source/WebKit/ChangeLog	2020-12-01 15:50:43 UTC (rev 270298)
+++ trunk/Source/WebKit/ChangeLog	2020-12-01 15:53:23 UTC (rev 270299)
@@ -1,3 +1,20 @@
+2020-12-01  Kate Cheney  <[email protected]>
+
+        ITP logging mixes up the UI process ITP state with the Settings ITP state
+        https://bugs.webkit.org/show_bug.cgi?id=219359
+        <rdar://problem/71808489>
+
+        Reviewed by Youenn Fablet.
+
+        Update an ITP logging message in the network process which mixes up
+        the variables for the ITP state passed from the UI process and the
+        ITP value from Settings.
+
+        No new tests, this only updates an incorrect logging message.
+
+        * NetworkProcess/cocoa/NetworkSessionCocoa.mm:
+        (WebKit::activateSessionCleanup):
+
 2020-12-01  Alejandro G. Castro  <[email protected]>
 
         [GTK][WPE] Async scrolling udpates are blocked in the main thread

Modified: trunk/Source/WebKit/NetworkProcess/cocoa/NetworkSessionCocoa.mm (270298 => 270299)


--- trunk/Source/WebKit/NetworkProcess/cocoa/NetworkSessionCocoa.mm	2020-12-01 15:50:43 UTC (rev 270298)
+++ trunk/Source/WebKit/NetworkProcess/cocoa/NetworkSessionCocoa.mm	2020-12-01 15:53:23 UTC (rev 270299)
@@ -1184,7 +1184,7 @@
     bool passedEnabledState = session.isResourceLoadStatisticsEnabled();
 
     if (itpEnabled != passedEnabledState)
-        WTFLogAlways("Passed ITP enabled state (%d) does not match TCC setting (%d)\n", itpEnabled, passedEnabledState);
+        WTFLogAlways("Passed ITP enabled state (%d) does not match TCC setting (%d)\n", passedEnabledState, itpEnabled);
     session.setResourceLoadStatisticsEnabled(passedEnabledState);
 #endif
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to