Title: [246254] branches/safari-608.1.27-branch/Source/WebKit
- Revision
- 246254
- Author
- [email protected]
- Date
- 2019-06-09 23:25:42 -0700 (Sun, 09 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-branch/Source/WebKit/ChangeLog (246253 => 246254)
--- branches/safari-608.1.27-branch/Source/WebKit/ChangeLog 2019-06-10 06:25:39 UTC (rev 246253)
+++ branches/safari-608.1.27-branch/Source/WebKit/ChangeLog 2019-06-10 06:25:42 UTC (rev 246254)
@@ -1,5 +1,34 @@
2019-06-09 Babak Shafiei <[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-09 Babak Shafiei <[email protected]>
+
Cherry-pick r246239. rdar://problem/51462498
Drag starting state can get stuck even though the drag has ended
Modified: branches/safari-608.1.27-branch/Source/WebKit/UIProcess/WebProcessPool.cpp (246253 => 246254)
--- branches/safari-608.1.27-branch/Source/WebKit/UIProcess/WebProcessPool.cpp 2019-06-10 06:25:39 UTC (rev 246253)
+++ branches/safari-608.1.27-branch/Source/WebKit/UIProcess/WebProcessPool.cpp 2019-06-10 06:25:42 UTC (rev 246254)
@@ -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