Changeset 246248 in webkit


Ignore:
Timestamp:
Jun 9, 2019 5:25:19 PM (5 years ago)
Author:
Brent Fulgham
Message:

[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.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r246239 r246248  
     12019-06-09  Brent Fulgham  <bfulgham@apple.com>
     2
     3        [iOS] ResourceLoadStatistics state is not properly relayed to the NetworkProcess
     4        https://bugs.webkit.org/show_bug.cgi?id=198692
     5        <rdar://problem/51538088>
     6
     7        Reviewed by Maciej Stachowiak.
     8
     9        * UIProcess/WebProcessPool.cpp:
     10        (WebKit::WebProcessPool::setResourceLoadStatisticsEnabled): Message the NetworkProcess
     11        on state change.
     12
    1132019-06-08  Dean Jackson  <dino@apple.com>
    214
  • trunk/Source/WebKit/UIProcess/WebProcessPool.cpp

    r246101 r246248  
    14891489{
    14901490    sendToAllProcesses(Messages::WebProcess::SetResourceLoadStatisticsEnabled(enabled));
     1491#if ENABLE(RESOURCE_LOAD_STATISTICS)
     1492    sendToNetworkingProcess(Messages::NetworkProcess::SetResourceLoadStatisticsEnabled(enabled));
     1493#endif
    14911494}
    14921495
Note: See TracChangeset for help on using the changeset viewer.