| Index: ui/accessibility/ax_node_data.cc
|
| diff --git a/ui/accessibility/ax_node_data.cc b/ui/accessibility/ax_node_data.cc
|
| index c7a50051a002255e6808f238418383218a57d18d..c283d873c356cd5f564686cf03c06ee125cc212c 100644
|
| --- a/ui/accessibility/ax_node_data.cc
|
| +++ b/ui/accessibility/ax_node_data.cc
|
| @@ -277,8 +277,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))
|
| @@ -558,7 +556,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_CHECKBOX_MIXED:
|
| result += " mixed=" + value;
|
| break;
|
| case AX_ATTR_LIVE_ATOMIC:
|
|
|