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

Unified Diff: ui/accessibility/ax_tree_data.h

Issue 1768753003: Implemented the reporting of text style and language information on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added unit and dmp tree tests. Addressed all reviewer's comments. Created 4 years, 9 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_tree_data.h
diff --git a/ui/accessibility/ax_tree_data.h b/ui/accessibility/ax_tree_data.h
index 2079dfc98da6b1c6ecf034e058cfe63491130ee5..eb16ca406be6b0ecae77357ee80957a2efde710c 100644
--- a/ui/accessibility/ax_tree_data.h
+++ b/ui/accessibility/ax_tree_data.h
@@ -39,12 +39,12 @@ struct AX_EXPORT AXTreeData {
int32_t parent_tree_id;
// Attributes specific to trees that are web frames.
- std::string url;
- std::string title;
- std::string mimetype;
std::string doctype;
bool loaded;
float loading_progress;
+ std::string mimetype;
+ std::string title;
+ std::string url;
// The node with keyboard focus within this tree, if any, or -1 if no node
// in this tree has focus.

Powered by Google App Engine
This is Rietveld 408576698