mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Security: https://vuxml.freebsd.org/freebsd/5c777f88-40ff-4e1e-884b-ad63dfb9bb15.html Security: https://vuxml.freebsd.org/freebsd/9c91e1f8-f255-4b57-babe-2e385558f1dc.html
29 lines
1.1 KiB
C++
29 lines
1.1 KiB
C++
--- ui/accessibility/ax_tree.h.orig 2025-07-02 06:08:04 UTC
|
|
+++ ui/accessibility/ax_tree.h
|
|
@@ -63,7 +63,7 @@ enum class AXTreeUnserializeError {
|
|
};
|
|
// LINT.ThenChange(/tools/metrics/histograms/metadata/accessibility/enums.xml:AccessibilityTreeUnserializeError)
|
|
|
|
-#if BUILDFLAG(IS_LINUX)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
// To support AriaNotify on older versions of ATK, we need to use the ATK
|
|
// signal "Text::text-insert". This signal requires a node that is a
|
|
// text type, and it needs to have aria-live properties set in order for
|
|
@@ -288,7 +288,7 @@ class AX_EXPORT AXTree {
|
|
|
|
void NotifyChildTreeConnectionChanged(AXNode* node, AXTree* child_tree);
|
|
|
|
-#if BUILDFLAG(IS_LINUX)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
void ClearExtraAnnouncementNodes();
|
|
void CreateExtraAnnouncementNodes();
|
|
ExtraAnnouncementNodes* extra_announcement_nodes() const {
|
|
@@ -550,7 +550,7 @@ class AX_EXPORT AXTree {
|
|
|
|
std::unique_ptr<AXEvent> event_data_;
|
|
|
|
-#if BUILDFLAG(IS_LINUX)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
std::unique_ptr<ExtraAnnouncementNodes> extra_announcement_nodes_ = nullptr;
|
|
#endif // BUILDFLAG(IS_LINUX)
|
|
};
|