Changeset 218734 in webkit


Ignore:
Timestamp:
Jun 22, 2017 7:58:03 PM (7 years ago)
Author:
Chris Dumez
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:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r218733 r218734  
     12017-06-22  Chris Dumez  <cdumez@apple.com>
     2
     3        ResourceLoadStatisticsStore should be ThreadSafeRefCounted
     4        https://bugs.webkit.org/show_bug.cgi?id=173753
     5        <rdar://problem/32939326>
     6
     7        Reviewed by Andreas Kling.
     8
     9        ResourceLoadStatisticsStore should be ThreadSafeRefCounted as it is ref'd/deref'd
     10        from different threads.
     11
     12        * loader/ResourceLoadStatisticsStore.h:
     13
    1142017-06-22  Myles C. Maxfield  <mmaxfield@apple.com>
    215
  • trunk/Source/WebCore/loader/ResourceLoadStatisticsStore.h

    r217515 r218734  
    3939struct ResourceLoadStatistics;
    4040
    41 class ResourceLoadStatisticsStore : public RefCounted<ResourceLoadStatisticsStore> {
     41class ResourceLoadStatisticsStore : public ThreadSafeRefCounted<ResourceLoadStatisticsStore> {
    4242public:
    4343    WEBCORE_EXPORT static Ref<ResourceLoadStatisticsStore> create();
Note: See TracChangeset for help on using the changeset viewer.