⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 246296 in webkit


Ignore:
Timestamp:
Jun 10, 2019, 4:51:20 PM (7 years ago)
Author:
Kocsen Chung
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

Location:
branches/safari-608.1.27.40-branch/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-608.1.27.40-branch/Source/WebKit/ChangeLog

    r246098 r246296  
     12019-06-10  Kocsen Chung  <kocsen_chung@apple.com>
     2
     3        Cherry-pick r246248. rdar://problem/51538088
     4
     5    [iOS] ResourceLoadStatistics state is not properly relayed to the NetworkProcess
     6    https://bugs.webkit.org/show_bug.cgi?id=198692
     7    <rdar://problem/51538088>
     8   
     9    Reviewed by Maciej Stachowiak.
     10   
     11    * UIProcess/WebProcessPool.cpp:
     12    (WebKit::WebProcessPool::setResourceLoadStatisticsEnabled): Message the NetworkProcess
     13    on state change.
     14   
     15   
     16    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@246248 268f45cc-cd09-0410-ab3c-d52691b4dbfc
     17
     18    2019-06-09  Brent Fulgham  <bfulgham@apple.com>
     19
     20            [iOS] ResourceLoadStatistics state is not properly relayed to the NetworkProcess
     21            https://bugs.webkit.org/show_bug.cgi?id=198692
     22            <rdar://problem/51538088>
     23
     24            Reviewed by Maciej Stachowiak.
     25
     26            * UIProcess/WebProcessPool.cpp:
     27            (WebKit::WebProcessPool::setResourceLoadStatisticsEnabled): Message the NetworkProcess
     28            on state change.
     29
    1302019-06-04  Babak Shafiei  <bshafiei@apple.com>
    231
  • branches/safari-608.1.27.40-branch/Source/WebKit/UIProcess/WebProcessPool.cpp

    r245807 r246296  
    14821482{
    14831483    sendToAllProcesses(Messages::WebProcess::SetResourceLoadStatisticsEnabled(enabled));
     1484#if ENABLE(RESOURCE_LOAD_STATISTICS)
     1485    sendToNetworkingProcess(Messages::NetworkProcess::SetResourceLoadStatisticsEnabled(enabled));
     1486#endif
    14841487}
    14851488
Note: See TracChangeset for help on using the changeset viewer.