Title: [283306] trunk/Source/WebCore
Revision
283306
Author
carlo...@webkit.org
Date
2021-09-30 01:42:16 -0700 (Thu, 30 Sep 2021)

Log Message

Unreviewed GTK build fix after r283304

* accessibility/atspi/AccessibilityAtspi.cpp:
(WebCore::AccessibilityAtspi::registerRoot): Use Ref instead of makeRef.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (283305 => 283306)


--- trunk/Source/WebCore/ChangeLog	2021-09-30 07:45:07 UTC (rev 283305)
+++ trunk/Source/WebCore/ChangeLog	2021-09-30 08:42:16 UTC (rev 283306)
@@ -2,6 +2,13 @@
 
         Unreviewed GTK build fix after r283304
 
+        * accessibility/atspi/AccessibilityAtspi.cpp:
+        (WebCore::AccessibilityAtspi::registerRoot): Use Ref instead of makeRef.
+
+2021-09-30  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        Unreviewed GTK build fix after r283304
+
         * accessibility/atspi/AccessibilityObjectAtspi.h: Move the final keyword to the right place.
 
 2021-09-30  Carlos Garcia Campos  <cgar...@igalia.com>

Modified: trunk/Source/WebCore/accessibility/atspi/AccessibilityAtspi.cpp (283305 => 283306)


--- trunk/Source/WebCore/accessibility/atspi/AccessibilityAtspi.cpp	2021-09-30 07:45:07 UTC (rev 283305)
+++ trunk/Source/WebCore/accessibility/atspi/AccessibilityAtspi.cpp	2021-09-30 08:42:16 UTC (rev 283306)
@@ -62,7 +62,7 @@
 void AccessibilityAtspi::registerRoot(AccessibilityRootAtspi& rootObject, Vector<std::pair<GDBusInterfaceInfo*, GDBusInterfaceVTable*>>&& interfaces, CompletionHandler<void(const String&)>&& completionHandler)
 {
     RELEASE_ASSERT(isMainThread());
-    m_queue->dispatch([this, rootObject = makeRef(rootObject), interfaces = WTFMove(interfaces), completionHandler = WTFMove(completionHandler)]() mutable {
+    m_queue->dispatch([this, rootObject = Ref { rootObject }, interfaces = WTFMove(interfaces), completionHandler = WTFMove(completionHandler)]() mutable {
         String reference;
         if (m_connection) {
             String path = makeString("/org/a11y/webkit/accessible/", createCanonicalUUIDString().replace('-', '_'));
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to