Title: [227401] branches/safari-605-branch/Source/WebKit
Revision
227401
Author
jmarc...@apple.com
Date
2018-01-22 22:42:43 -0800 (Mon, 22 Jan 2018)

Log Message

Cherry-pick r227358. rdar://problem/36763023

Modified Paths

Diff

Modified: branches/safari-605-branch/Source/WebKit/ChangeLog (227400 => 227401)


--- branches/safari-605-branch/Source/WebKit/ChangeLog	2018-01-23 06:42:41 UTC (rev 227400)
+++ branches/safari-605-branch/Source/WebKit/ChangeLog	2018-01-23 06:42:43 UTC (rev 227401)
@@ -1,5 +1,22 @@
 2018-01-22  Jason Marcell  <jmarc...@apple.com>
 
+        Cherry-pick r227358. rdar://problem/36763023
+
+    2018-01-22  Youenn Fablet  <you...@apple.com>
+
+            SW: Make sure ServiceWorker loading and requests are correctly cleared by ITP
+            https://bugs.webkit.org/show_bug.cgi?id=181942
+            <rdar://problem/35132091>
+
+            Reviewed by Chris Dumez.
+
+            Add ServiceWorkerRegistrations and DOMCache as persistent data to be cleared according ITP decisions.
+
+            * UIProcess/WebResourceLoadStatisticsStore.cpp:
+            (WebKit::WebResourceLoadStatisticsStore::monitoredDataTypes):
+
+2018-01-22  Jason Marcell  <jmarc...@apple.com>
+
         Cherry-pick r227340. rdar://problem/36746140
 
     2018-01-22  Brady Eidson  <beid...@apple.com>

Modified: branches/safari-605-branch/Source/WebKit/UIProcess/WebResourceLoadStatisticsStore.cpp (227400 => 227401)


--- branches/safari-605-branch/Source/WebKit/UIProcess/WebResourceLoadStatisticsStore.cpp	2018-01-23 06:42:41 UTC (rev 227400)
+++ branches/safari-605-branch/Source/WebKit/UIProcess/WebResourceLoadStatisticsStore.cpp	2018-01-23 06:42:43 UTC (rev 227401)
@@ -59,6 +59,7 @@
 {
     static NeverDestroyed<OptionSet<WebsiteDataType>> dataTypes(std::initializer_list<WebsiteDataType>({
         WebsiteDataType::Cookies,
+        WebsiteDataType::DOMCache,
         WebsiteDataType::IndexedDBDatabases,
         WebsiteDataType::LocalStorage,
         WebsiteDataType::MediaKeys,
@@ -68,6 +69,9 @@
 #endif
         WebsiteDataType::SearchFieldRecentSearches,
         WebsiteDataType::SessionStorage,
+#if ENABLE(SERVICE_WORKER)
+        WebsiteDataType::ServiceWorkerRegistrations,
+#endif
         WebsiteDataType::WebSQLDatabases,
     }));
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to