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

Unified Diff: ui/accessibility/ax_node_data.cc

Issue 667713006: Implement automatic load of composed/embedded automation trees (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Fix UAF Created 6 years, 1 month 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
« no previous file with comments | « ui/accessibility/ax_enums.idl ('k') | ui/views/accessibility/ax_view_obj_wrapper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/accessibility/ax_node_data.cc
diff --git a/ui/accessibility/ax_node_data.cc b/ui/accessibility/ax_node_data.cc
index a3062148ad8287cde726c4e643383d8ef89059a8..d78dddaf66371319923e4c62586115845f981595 100644
--- a/ui/accessibility/ax_node_data.cc
+++ b/ui/accessibility/ax_node_data.cc
@@ -203,6 +203,12 @@ std::string AXNodeData::ToString() const {
case AX_ATTR_COLOR_VALUE_BLUE:
result += " color_value_blue=" + value;
break;
+ case AX_ATTR_TREE_ID:
+ result += " tree_id=" + value;
+ break;
+ case AX_ATTR_CHILD_TREE_ID:
+ result += " child_tree_id=" + value;
+ break;
case AX_ATTR_TEXT_DIRECTION:
switch (int_attributes[i].second) {
case AX_TEXT_DIRECTION_LR:
« no previous file with comments | « ui/accessibility/ax_enums.idl ('k') | ui/views/accessibility/ax_view_obj_wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698