Title: [242869] releases/WebKitGTK/webkit-2.24/Source/WebCore
Revision
242869
Author
[email protected]
Date
2019-03-13 02:25:10 -0700 (Wed, 13 Mar 2019)

Log Message

Merge r242639 - 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:

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.24/Source/WebCore/ChangeLog (242868 => 242869)


--- releases/WebKitGTK/webkit-2.24/Source/WebCore/ChangeLog	2019-03-13 09:25:06 UTC (rev 242868)
+++ releases/WebKitGTK/webkit-2.24/Source/WebCore/ChangeLog	2019-03-13 09:25:10 UTC (rev 242869)
@@ -1,3 +1,14 @@
+2019-03-08  Miguel Gomez  <[email protected]>
+
+        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:
+
 2019-03-06  Wenson Hsieh  <[email protected]>
 
         Crash when attempting to change input type while dismissing datalist suggestions

Modified: releases/WebKitGTK/webkit-2.24/Source/WebCore/platform/graphics/filters/FilterOperation.h (242868 => 242869)


--- releases/WebKitGTK/webkit-2.24/Source/WebCore/platform/graphics/filters/FilterOperation.h	2019-03-13 09:25:06 UTC (rev 242868)
+++ releases/WebKitGTK/webkit-2.24/Source/WebCore/platform/graphics/filters/FilterOperation.h	2019-03-13 09:25:10 UTC (rev 242869)
@@ -28,7 +28,7 @@
 #include "Color.h"
 #include "LayoutSize.h"
 #include "Length.h"
-#include <wtf/RefCounted.h>
+#include <wtf/ThreadSafeRefCounted.h>
 #include <wtf/TypeCasts.h>
 #include <wtf/text/WTFString.h>
 
@@ -47,7 +47,7 @@
 struct FloatComponents;
 struct ResourceLoaderOptions;
 
-class FilterOperation : public RefCounted<FilterOperation> {
+class FilterOperation : public ThreadSafeRefCounted<FilterOperation> {
 public:
     enum OperationType {
         REFERENCE, // url(#somefilter)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to