Title: [288699] trunk/Source/WebCore
Revision
288699
Author
[email protected]
Date
2022-01-27 13:21:30 -0800 (Thu, 27 Jan 2022)

Log Message

Fix !ENABLE(ACCESSIBILITY) after r288674
https://bugs.webkit.org/show_bug.cgi?id=235727
<rdar://problem/88147878>

Unreviewed build fix.

In r288674 AXObjectCache had updateLoadingProgress added but it wasn't added to the block
of inlined !ENABLE(ACCESSIBILITY) methods further down the file.


* accessibility/AXObjectCache.h:
(WebCore::AXObjectCache::updateLoadingProgress):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (288698 => 288699)


--- trunk/Source/WebCore/ChangeLog	2022-01-27 21:06:58 UTC (rev 288698)
+++ trunk/Source/WebCore/ChangeLog	2022-01-27 21:21:30 UTC (rev 288699)
@@ -1,3 +1,17 @@
+2022-01-27  Don Olmstead  <[email protected]>
+
+        Fix !ENABLE(ACCESSIBILITY) after r288674
+        https://bugs.webkit.org/show_bug.cgi?id=235727
+        <rdar://problem/88147878>
+
+        Unreviewed build fix.
+
+        In r288674 AXObjectCache had updateLoadingProgress added but it wasn't added to the block
+        of inlined !ENABLE(ACCESSIBILITY) methods further down the file.
+
+        * accessibility/AXObjectCache.h:
+        (WebCore::AXObjectCache::updateLoadingProgress):
+
 2022-01-27  Devin Rousso  <[email protected]>
 
         [Payment Request] allow additional payment method specific data to be passed to `complete()`

Modified: trunk/Source/WebCore/accessibility/AXObjectCache.h (288698 => 288699)


--- trunk/Source/WebCore/accessibility/AXObjectCache.h	2022-01-27 21:06:58 UTC (rev 288698)
+++ trunk/Source/WebCore/accessibility/AXObjectCache.h	2022-01-27 21:21:30 UTC (rev 288699)
@@ -625,6 +625,7 @@
 inline void AXObjectCache::textChanged(AccessibilityObject*) { }
 inline void AXObjectCache::textChanged(Node*) { }
 inline void AXObjectCache::updateCacheAfterNodeIsAttached(Node*) { }
+inline void AXObjectCache::updateLoadingProgress(double) { }
 inline SimpleRange AXObjectCache::rangeForNodeContents(Node& node) { return makeRangeSelectingNodeContents(node); }
 inline void AXObjectCache::remove(AXID) { }
 inline void AXObjectCache::remove(RenderObject*) { }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to