Title: [219974] trunk/Source/WebKit
Revision
219974
Author
beid...@apple.com
Date
2017-07-26 19:47:20 -0700 (Wed, 26 Jul 2017)

Log Message

ResourceLoadStatistics API tests fail on El Capitan.
https://bugs.webkit.org/show_bug.cgi?id=174877

Reviewed by Chris Dumez.

Always install the testing callback.

* UIProcess/WebsiteData/WebsiteDataStore.cpp:
(WebKit::WebsiteDataStore::enableResourceLoadStatisticsAndSetTestingCallback):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (219973 => 219974)


--- trunk/Source/WebKit/ChangeLog	2017-07-27 01:49:44 UTC (rev 219973)
+++ trunk/Source/WebKit/ChangeLog	2017-07-27 02:47:20 UTC (rev 219974)
@@ -1,3 +1,15 @@
+2017-07-26  Brady Eidson  <beid...@apple.com>
+
+        ResourceLoadStatistics API tests fail on El Capitan.
+        https://bugs.webkit.org/show_bug.cgi?id=174877
+
+        Reviewed by Chris Dumez.
+
+        Always install the testing callback.
+
+        * UIProcess/WebsiteData/WebsiteDataStore.cpp:
+        (WebKit::WebsiteDataStore::enableResourceLoadStatisticsAndSetTestingCallback):
+
 2017-07-26  Tim Horton  <timothy_hor...@apple.com>
 
         REGRESSION (r211160): Can't pinch to zoom unlocked encrypted PDFs in WKWebView

Modified: trunk/Source/WebKit/UIProcess/WebsiteData/WebsiteDataStore.cpp (219973 => 219974)


--- trunk/Source/WebKit/UIProcess/WebsiteData/WebsiteDataStore.cpp	2017-07-27 01:49:44 UTC (rev 219973)
+++ trunk/Source/WebKit/UIProcess/WebsiteData/WebsiteDataStore.cpp	2017-07-27 02:47:20 UTC (rev 219974)
@@ -1308,7 +1308,7 @@
         updateCookiePartitioningForTopPrivatelyOwnedDomains(domainsToRemove, domainsToAdd, shouldClearFirst);
     });
 #else
-    m_resourceLoadStatistics = WebResourceLoadStatisticsStore::create(m_configuration.resourceLoadStatisticsDirectory, nullptr);
+    m_resourceLoadStatistics = WebResourceLoadStatisticsStore::create(m_configuration.resourceLoadStatisticsDirectory, WTFMove(callback));
 #endif
 
     for (auto& processPool : processPools())
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to