Skip to content

Commit

Permalink
Fix !ENABLE(ACCESSIBILITY) build following 264911@main
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=257772

Unreviewed build fix.

* Source/WebCore/accessibility/AXObjectCache.h:
(WebCore::AXObjectCache::onTextCompositionChange):
(WebCore::AXObjectCache::textCompositionObjectForNode):
Add missing stubs.

Canonical link: https://commits.webkit.org/264917@main
  • Loading branch information
rkirsling committed Jun 7, 2023
1 parent 1515a23 commit a0d7223
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/WebCore/accessibility/AXObjectCache.h
Original file line number Diff line number Diff line change
Expand Up @@ -714,6 +714,7 @@ inline void AXObjectCache::onSelectedChanged(Node*) { }
inline void AXObjectCache::onTextSecurityChanged(HTMLInputElement&) { }
inline void AXObjectCache::onTitleChange(Document&) { }
inline void AXObjectCache::onValidityChange(Element&) { }
inline void AXObjectCache::onTextCompositionChange(Node&) { }
inline void AXObjectCache::valueChanged(Element*) { }
inline void AXObjectCache::onFocusChange(Node*, Node*) { }
inline void AXObjectCache::onPopoverTargetToggle(const HTMLFormControlElement&) { }
Expand Down Expand Up @@ -762,6 +763,7 @@ inline void AXObjectCache::updateLoadingProgress(double) { }
inline SimpleRange AXObjectCache::rangeForNodeContents(Node& node) { return makeRangeSelectingNodeContents(node); }
inline std::optional<Vector<AXID>> AXObjectCache::relatedObjectIDsFor(const AXCoreObject&, AXRelationType) { return std::nullopt; }
inline void AXObjectCache::updateRelations(Element&, const QualifiedName&) { }
inline AccessibilityObject* AXObjectCache::textCompositionObjectForNode(Node&) { return nullptr; }
inline void AXObjectCache::remove(AXID) { }
inline void AXObjectCache::remove(RenderObject*) { }
inline void AXObjectCache::remove(Node&) { }
Expand Down

0 comments on commit a0d7223

Please sign in to comment.