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

Unified Diff: ui/accessibility/ax_tree.h

Issue 1716663002: Add a treeChange type to Automation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 62b0709fc35aaa9f4d25f0a14c5c71699727e355..2f21bd36906e8561ce62f4a8c3b3445ad739c543 100644
--- a/ui/accessibility/ax_tree.h
+++ b/ui/accessibility/ax_tree.h
@@ -62,11 +62,7 @@ class AX_EXPORT AXTreeDelegate {
// the middle of an update, don't walk the parents and children now.
virtual void OnNodeChanged(AXTree* tree, AXNode* node) = 0;
- enum ChangeType {
- NODE_CREATED,
- SUBTREE_CREATED,
- NODE_CHANGED
- };
+ enum ChangeType { NODE_CREATED, SUBTREE_CREATED, NODE_CHANGED, TEXT_CHANGED };
struct Change {
Change(AXNode* node, ChangeType type) {

Powered by Google App Engine
This is Rietveld 408576698