Title: [246296] branches/safari-608.1.27.40-branch/Source/WebKit
Revision
246296
Author
[email protected]
Date
2019-06-10 16:51:20 -0700 (Mon, 10 Jun 2019)

Log Message

Cherry-pick r246248. rdar://problem/51538088

    [iOS] ResourceLoadStatistics state is not properly relayed to the NetworkProcess
    https://bugs.webkit.org/show_bug.cgi?id=198692
    <rdar://problem/51538088>

    Reviewed by Maciej Stachowiak.

    * UIProcess/WebProcessPool.cpp:
    (WebKit::WebProcessPool::setResourceLoadStatisticsEnabled): Message the NetworkProcess
    on state change.

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@246248 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-608.1.27.40-branch/Source/WebKit/ChangeLog (246295 => 246296)


--- branches/safari-608.1.27.40-branch/Source/WebKit/ChangeLog	2019-06-10 23:47:32 UTC (rev 246295)
+++ branches/safari-608.1.27.40-branch/Source/WebKit/ChangeLog	2019-06-10 23:51:20 UTC (rev 246296)
@@ -1,3 +1,32 @@
+2019-06-10  Kocsen Chung  <[email protected]>
+
+        Cherry-pick r246248. rdar://problem/51538088
+
+    [iOS] ResourceLoadStatistics state is not properly relayed to the NetworkProcess
+    https://bugs.webkit.org/show_bug.cgi?id=198692
+    <rdar://problem/51538088>
+    
+    Reviewed by Maciej Stachowiak.
+    
+    * UIProcess/WebProcessPool.cpp:
+    (WebKit::WebProcessPool::setResourceLoadStatisticsEnabled): Message the NetworkProcess
+    on state change.
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@246248 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2019-06-09  Brent Fulgham  <[email protected]>
+
+            [iOS] ResourceLoadStatistics state is not properly relayed to the NetworkProcess
+            https://bugs.webkit.org/show_bug.cgi?id=198692
+            <rdar://problem/51538088>
+
+            Reviewed by Maciej Stachowiak.
+
+            * UIProcess/WebProcessPool.cpp:
+            (WebKit::WebProcessPool::setResourceLoadStatisticsEnabled): Message the NetworkProcess
+            on state change.
+
 2019-06-04  Babak Shafiei  <[email protected]>
 
         Cherry-pick r246077. rdar://problem/51164741

Modified: branches/safari-608.1.27.40-branch/Source/WebKit/UIProcess/WebProcessPool.cpp (246295 => 246296)


--- branches/safari-608.1.27.40-branch/Source/WebKit/UIProcess/WebProcessPool.cpp	2019-06-10 23:47:32 UTC (rev 246295)
+++ branches/safari-608.1.27.40-branch/Source/WebKit/UIProcess/WebProcessPool.cpp	2019-06-10 23:51:20 UTC (rev 246296)
@@ -1481,6 +1481,9 @@
 void WebProcessPool::setResourceLoadStatisticsEnabled(bool enabled)
 {
     sendToAllProcesses(Messages::WebProcess::SetResourceLoadStatisticsEnabled(enabled));
+#if ENABLE(RESOURCE_LOAD_STATISTICS)
+    sendToNetworkingProcess(Messages::NetworkProcess::SetResourceLoadStatisticsEnabled(enabled));
+#endif
 }
 
 void WebProcessPool::clearResourceLoadStatistics()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to