Title: [233319] trunk/Source/WebKit
Revision
233319
Author
[email protected]
Date
2018-06-28 13:09:21 -0700 (Thu, 28 Jun 2018)

Log Message

Split memory store logic out of WebResourceLoadStatisticsStore to clarify threading model
https://bugs.webkit.org/show_bug.cgi?id=187055
<rdar://problem/41584026>

Unreviewed, temporarily disable main thread assertion added to flushAndDestroyPersistentStore()
in r233310, until Bug 187143 is fixed.

* UIProcess/WebResourceLoadStatisticsStore.cpp:
(WebKit::WebResourceLoadStatisticsStore::flushAndDestroyPersistentStore):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (233318 => 233319)


--- trunk/Source/WebKit/ChangeLog	2018-06-28 19:52:32 UTC (rev 233318)
+++ trunk/Source/WebKit/ChangeLog	2018-06-28 20:09:21 UTC (rev 233319)
@@ -1,3 +1,15 @@
+2018-06-28  Chris Dumez  <[email protected]>
+
+        Split memory store logic out of WebResourceLoadStatisticsStore to clarify threading model
+        https://bugs.webkit.org/show_bug.cgi?id=187055
+        <rdar://problem/41584026>
+
+        Unreviewed, temporarily disable main thread assertion added to flushAndDestroyPersistentStore()
+        in r233310, until Bug 187143 is fixed.
+
+        * UIProcess/WebResourceLoadStatisticsStore.cpp:
+        (WebKit::WebResourceLoadStatisticsStore::flushAndDestroyPersistentStore):
+
 2018-06-28  Youenn Fablet  <[email protected]>
 
         Add sandbox to microdone plugin

Modified: trunk/Source/WebKit/UIProcess/WebResourceLoadStatisticsStore.cpp (233318 => 233319)


--- trunk/Source/WebKit/UIProcess/WebResourceLoadStatisticsStore.cpp	2018-06-28 19:52:32 UTC (rev 233318)
+++ trunk/Source/WebKit/UIProcess/WebResourceLoadStatisticsStore.cpp	2018-06-28 20:09:21 UTC (rev 233319)
@@ -143,8 +143,6 @@
 
 void WebResourceLoadStatisticsStore::flushAndDestroyPersistentStore()
 {
-    ASSERT(RunLoop::isMain());
-
     if (!m_persistentStorage && !m_memoryStore)
         return;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to