| Index: ui/accessibility/ax_node_data.cc
|
| diff --git a/ui/accessibility/ax_node_data.cc b/ui/accessibility/ax_node_data.cc
|
| index 280e10b602dd9955ead84368fc18d4a43a765654..56b202d565efc4f46247fd413c36033fd45a379a 100644
|
| --- a/ui/accessibility/ax_node_data.cc
|
| +++ b/ui/accessibility/ax_node_data.cc
|
| @@ -276,8 +276,6 @@ std::string AXNodeData::ToString() const {
|
| result += " HASPOPUP";
|
| if (state & (1 << AX_STATE_HOVERED))
|
| result += " HOVERED";
|
| - if (state & (1 << AX_STATE_INDETERMINATE))
|
| - result += " INDETERMINATE";
|
| if (state & (1 << AX_STATE_INVISIBLE))
|
| result += " INVISIBLE";
|
| if (state & (1 << AX_STATE_LINKED))
|
| @@ -555,7 +553,7 @@ std::string AXNodeData::ToString() const {
|
| for (size_t i = 0; i < bool_attributes.size(); ++i) {
|
| std::string value = bool_attributes[i].second ? "true" : "false";
|
| switch (bool_attributes[i].first) {
|
| - case AX_ATTR_BUTTON_MIXED:
|
| + case AX_ATTR_STATE_MIXED:
|
| result += " mixed=" + value;
|
| break;
|
| case AX_ATTR_LIVE_ATOMIC:
|
|
|