⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 242639 in webkit


Ignore:
Timestamp:
Mar 8, 2019, 3:26:18 AM (7 years ago)
Author:
magomez@igalia.com
Message:

Use a thread safe refcounter for FilterOperation.
https://bugs.webkit.org/show_bug.cgi?id=194149

Reviewed by Carlos Garcia Campos.

Use a thread safe refcounter for FilterOperation.

  • platform/graphics/filters/FilterOperation.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r242636 r242639  
     12019-03-08  Miguel Gomez  <magomez@igalia.com>
     2
     3        Use a thread safe refcounter for FilterOperation.
     4        https://bugs.webkit.org/show_bug.cgi?id=194149
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        Use a thread safe refcounter for FilterOperation.
     9
     10        * platform/graphics/filters/FilterOperation.h:
     11
    1122019-03-07  Yusuke Suzuki  <ysuzuki@apple.com>
    213
  • trunk/Source/WebCore/platform/graphics/filters/FilterOperation.h

    r236413 r242639  
    2929#include "LayoutSize.h"
    3030#include "Length.h"
    31 #include <wtf/RefCounted.h>
     31#include <wtf/ThreadSafeRefCounted.h>
    3232#include <wtf/TypeCasts.h>
    3333#include <wtf/text/WTFString.h>
     
    4848struct ResourceLoaderOptions;
    4949
    50 class FilterOperation : public RefCounted<FilterOperation> {
     50class FilterOperation : public ThreadSafeRefCounted<FilterOperation> {
    5151public:
    5252    enum OperationType {
Note: See TracChangeset for help on using the changeset viewer.