Title: [283602] trunk/Source/WebCore
Revision
283602
Author
[email protected]
Date
2021-10-05 23:14:37 -0700 (Tue, 05 Oct 2021)

Log Message

[PlayStation] Fix build break after r283441
https://bugs.webkit.org/show_bug.cgi?id=231277

Unreviewed.

No new tests because there is no behavior change.


* platform/graphics/Path.h:
(WebCore::Path::strokeBoundingRect):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (283601 => 283602)


--- trunk/Source/WebCore/ChangeLog	2021-10-06 05:40:07 UTC (rev 283601)
+++ trunk/Source/WebCore/ChangeLog	2021-10-06 06:14:37 UTC (rev 283602)
@@ -1,3 +1,15 @@
+2021-10-05  Basuke Suzuki  <[email protected]>
+
+        [PlayStation] Fix build break after r283441
+        https://bugs.webkit.org/show_bug.cgi?id=231277
+
+        Unreviewed.
+
+        No new tests because there is no behavior change.
+
+        * platform/graphics/Path.h:
+        (WebCore::Path::strokeBoundingRect):
+
 2021-10-05  Tyler Wilcock  <[email protected]>
 
         AX: Move handling of AXContents from platform wrapper to AX core

Modified: trunk/Source/WebCore/platform/graphics/Path.h (283601 => 283602)


--- trunk/Source/WebCore/platform/graphics/Path.h	2021-10-06 05:40:07 UTC (rev 283601)
+++ trunk/Source/WebCore/platform/graphics/Path.h	2021-10-06 06:14:37 UTC (rev 283602)
@@ -137,13 +137,13 @@
     static Path polygonPathFromPoints(const Vector<FloatPoint>&);
 
     bool contains(const FloatPoint&, WindRule = WindRule::NonZero) const;
-    bool strokeContains(const FloatPoint&, const Function<void(GraphicsContext&)>& strokeStyleApplier) const;
+    bool strokeContains(const FloatPoint&, const WTF::Function<void(GraphicsContext&)>& strokeStyleApplier) const;
 
     // fastBoundingRect() should equal or contain boundingRect(); boundingRect()
     // should perfectly bound the points within the path.
     FloatRect boundingRect() const;
     WEBCORE_EXPORT FloatRect fastBoundingRect() const;
-    FloatRect strokeBoundingRect(const Function<void(GraphicsContext&)>& strokeStyleApplier = { }) const;
+    FloatRect strokeBoundingRect(const WTF::Function<void(GraphicsContext&)>& strokeStyleApplier = { }) const;
 
     WEBCORE_EXPORT size_t elementCount() const;
     float length() const;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to