Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Unified Diff: ui/accessibility/ax_tree.h

Issue 2873373005: Add custom action support (Closed)
Patch Set: Fix a few files. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/accessibility/ax_tree.h
diff --git a/ui/accessibility/ax_tree.h b/ui/accessibility/ax_tree.h
index 53cd9ea7baeda471161e5d92ccae6908eff9061d..1b01136d3493b323f6961904db47ff201b32e162 100644
--- a/ui/accessibility/ax_tree.h
+++ b/ui/accessibility/ax_tree.h
@@ -83,6 +83,12 @@ class AX_EXPORT AXTreeDelegate {
AXIntListAttribute attr,
const std::vector<int32_t>& old_value,
const std::vector<int32_t>& new_value) {}
+ virtual void OnStringListAttributeChanged(
+ AXTree* tree,
+ AXNode* node,
+ AXStringListAttribute attr,
+ const std::vector<std::string>& old_value,
+ const std::vector<std::string>& new_value) {}
// Called when tree data changes.
virtual void OnTreeDataChanged(AXTree* tree) = 0;

Powered by Google App Engine
This is Rietveld 408576698