Title: [218734] trunk/Source/WebCore
Revision
218734
Author
[email protected]
Date
2017-06-22 19:58:03 -0700 (Thu, 22 Jun 2017)

Log Message

ResourceLoadStatisticsStore should be ThreadSafeRefCounted
https://bugs.webkit.org/show_bug.cgi?id=173753
<rdar://problem/32939326>

Reviewed by Andreas Kling.

ResourceLoadStatisticsStore should be ThreadSafeRefCounted as it is ref'd/deref'd
from different threads.

* loader/ResourceLoadStatisticsStore.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (218733 => 218734)


--- trunk/Source/WebCore/ChangeLog	2017-06-23 02:17:21 UTC (rev 218733)
+++ trunk/Source/WebCore/ChangeLog	2017-06-23 02:58:03 UTC (rev 218734)
@@ -1,3 +1,16 @@
+2017-06-22  Chris Dumez  <[email protected]>
+
+        ResourceLoadStatisticsStore should be ThreadSafeRefCounted
+        https://bugs.webkit.org/show_bug.cgi?id=173753
+        <rdar://problem/32939326>
+
+        Reviewed by Andreas Kling.
+
+        ResourceLoadStatisticsStore should be ThreadSafeRefCounted as it is ref'd/deref'd
+        from different threads.
+
+        * loader/ResourceLoadStatisticsStore.h:
+
 2017-06-22  Myles C. Maxfield  <[email protected]>
 
         @font-face rules with invalid primary fonts never download their secondary fonts

Modified: trunk/Source/WebCore/loader/ResourceLoadStatisticsStore.h (218733 => 218734)


--- trunk/Source/WebCore/loader/ResourceLoadStatisticsStore.h	2017-06-23 02:17:21 UTC (rev 218733)
+++ trunk/Source/WebCore/loader/ResourceLoadStatisticsStore.h	2017-06-23 02:58:03 UTC (rev 218734)
@@ -38,7 +38,7 @@
 
 struct ResourceLoadStatistics;
 
-class ResourceLoadStatisticsStore : public RefCounted<ResourceLoadStatisticsStore> {
+class ResourceLoadStatisticsStore : public ThreadSafeRefCounted<ResourceLoadStatisticsStore> {
 public:
     WEBCORE_EXPORT static Ref<ResourceLoadStatisticsStore> create();
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to