Chromium Code Reviews| Index: ui/accessibility/ax_tree.cc |
| diff --git a/ui/accessibility/ax_tree.cc b/ui/accessibility/ax_tree.cc |
| index c0ec9ac8c49f6f5c007872a042e374d47c0f85f1..81799732db0186487fa984f2792ffe04a0cea76a 100644 |
| --- a/ui/accessibility/ax_tree.cc |
| +++ b/ui/accessibility/ax_tree.cc |
| @@ -169,6 +169,8 @@ bool AXTree::UpdateNode( |
| node = new_node; |
| update_state->new_nodes.insert(node); |
| node->SetData(src); |
| + if (delegate_) |
|
aboxhall
2014/06/12 22:31:45
Suggestion: pull these two lines out below the who
dmazzoni
2014/06/12 23:27:22
Done.
|
| + delegate_->OnNodeChanged(node); |
| } |
| // First, delete nodes that used to be children of this node but aren't |