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

Unified Diff: ui/accessibility/ax_node_data.h

Issue 2106953005: Mac: Add new accessibility attributes for textfields (and some for all views). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ax-attrs
Patch Set: Typo. Created 4 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.h
diff --git a/ui/accessibility/ax_node_data.h b/ui/accessibility/ax_node_data.h
index c3d6948ddda86bd2dcdefba8949e83f5de466215..fe819f1bb084f5bbfe940ed38082d2c1c8786d97 100644
--- a/ui/accessibility/ax_node_data.h
+++ b/ui/accessibility/ax_node_data.h
@@ -104,10 +104,10 @@ struct AX_EXPORT AXNodeData {
int32_t id;
AXRole role;
uint32_t state;
- std::vector<std::pair<AXStringAttribute, std::string> > string_attributes;
+ std::vector<std::pair<AXStringAttribute, std::string>> string_attributes;
std::vector<std::pair<AXIntAttribute, int32_t>> int_attributes;
- std::vector<std::pair<AXFloatAttribute, float> > float_attributes;
- std::vector<std::pair<AXBoolAttribute, bool> > bool_attributes;
+ std::vector<std::pair<AXFloatAttribute, float>> float_attributes;
+ std::vector<std::pair<AXBoolAttribute, bool>> bool_attributes;
std::vector<std::pair<AXIntListAttribute, std::vector<int32_t>>>
intlist_attributes;
base::StringPairs html_attributes;

Powered by Google App Engine
This is Rietveld 408576698