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

Unified Diff: ui/accessibility/ax_node_data.cc

Issue 1162263008: Exposes datetime attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: re-upload due to browser_accessibility_cocoa.mm Created 5 years, 6 months 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
Index: ui/accessibility/ax_node_data.cc
diff --git a/ui/accessibility/ax_node_data.cc b/ui/accessibility/ax_node_data.cc
index 8cdc67be5c4199ab0dbf5f79cb98f91bc5a2c51b..674bf95e8f9add7da3b4f60f624d85a91d5c180e 100644
--- a/ui/accessibility/ax_node_data.cc
+++ b/ui/accessibility/ax_node_data.cc
@@ -499,9 +499,6 @@ std::string AXNodeData::ToString() const {
case AX_ATTR_DISPLAY:
result += " display=" + value;
break;
- case AX_ATTR_DROPEFFECT:
- result += " dropeffect=" + value;
- break;
case AX_ATTR_HELP:
result += " help=" + value;
break;
@@ -532,9 +529,6 @@ std::string AXNodeData::ToString() const {
case AX_ATTR_SHORTCUT:
result += " shortcut=" + value;
break;
- case AX_ATTR_TEXT_INPUT_TYPE:
- result += " text_input_type=" + value;
- break;
case AX_ATTR_URL:
result += " url=" + value;
break;
@@ -608,9 +602,6 @@ std::string AXNodeData::ToString() const {
case AX_ATTR_IS_AX_TREE_HOST:
result += " is_ax_tree_host=" + value;
break;
- case AX_ATTR_GRABBED:
- result += " grabbed=" + value;
- break;
case AX_BOOL_ATTRIBUTE_NONE:
break;
}
« content/renderer/accessibility/blink_ax_tree_source.cc ('K') | « ui/accessibility/ax_enums.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698