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

Unified Diff: ui/accessibility/ax_node_data.cc

Issue 2931473002: [ActiveSuggestionMarker #2.5] Handle ActiveSuggestionMarkers for accessibility (Closed)
Patch Set: Add TODO Created 3 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
« no previous file with comments | « ui/accessibility/ax_enums.idl ('k') | no next file » | 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 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);
« no previous file with comments | « ui/accessibility/ax_enums.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698