| Index: ui/accessibility/ax_node_data.cc
|
| diff --git a/ui/accessibility/ax_node_data.cc b/ui/accessibility/ax_node_data.cc
|
| index 2cb05046ad47b8227fde6ac603fe3c9f5fa079e1..eea07f3907d23b2f0690d0ad2172332a19622953 100644
|
| --- a/ui/accessibility/ax_node_data.cc
|
| +++ b/ui/accessibility/ax_node_data.cc
|
| @@ -926,6 +926,8 @@ std::string AXNodeData::ToString() const {
|
| types_str += "grammar&";
|
| if (type & AX_MARKER_TYPE_TEXT_MATCH)
|
| types_str += "text_match&";
|
| + if (type & AX_MARKER_TYPE_ACTIVE_SUGGESTION)
|
| + types_str += "active_suggestion&";
|
|
|
| if (!types_str.empty())
|
| types_str = types_str.substr(0, types_str.size() - 1);
|
|
|