Changeset 242639 in webkit
- Timestamp:
- Mar 8, 2019, 3:26:18 AM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/filters/FilterOperation.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r242636 r242639 1 2019-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 1 12 2019-03-07 Yusuke Suzuki <ysuzuki@apple.com> 2 13 -
trunk/Source/WebCore/platform/graphics/filters/FilterOperation.h
r236413 r242639 29 29 #include "LayoutSize.h" 30 30 #include "Length.h" 31 #include <wtf/ RefCounted.h>31 #include <wtf/ThreadSafeRefCounted.h> 32 32 #include <wtf/TypeCasts.h> 33 33 #include <wtf/text/WTFString.h> … … 48 48 struct ResourceLoaderOptions; 49 49 50 class FilterOperation : public RefCounted<FilterOperation> {50 class FilterOperation : public ThreadSafeRefCounted<FilterOperation> { 51 51 public: 52 52 enum OperationType {
Note:
See TracChangeset
for help on using the changeset viewer.