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

Unified Diff: ui/accessibility/ax_tree_combiner.h

Issue 2572923002: AXTreeCombiner no longer needs to convert to global coordinates. (Closed)
Patch Set: Fixed unittests Created 4 years 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 | « no previous file | ui/accessibility/ax_tree_combiner.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/accessibility/ax_tree_combiner.h
diff --git a/ui/accessibility/ax_tree_combiner.h b/ui/accessibility/ax_tree_combiner.h
index 37b9fa56879a37369cdd9e4995d2f0c2492872b6..ce8fbc792d50b63279b571e9bbf5a74cb29617d4 100644
--- a/ui/accessibility/ax_tree_combiner.h
+++ b/ui/accessibility/ax_tree_combiner.h
@@ -9,7 +9,6 @@
#include "ui/accessibility/ax_export.h"
#include "ui/accessibility/ax_tree_update.h"
-#include "ui/gfx/transform.h"
namespace ui {
@@ -19,8 +18,7 @@ namespace ui {
//
// Since node IDs are relative to each ID, it has to renumber all of the IDs
// and update all of the attributes that reference IDs of other nodes to
-// ensure they point to the right node. It also applies transformations to
-// local bounding rectangles to make them global.
+// ensure they point to the right node.
//
// It also makes sure the final combined tree points to the correct focused
// node across all of the trees based on the focused tree ID of the root tree.
@@ -45,7 +43,6 @@ class AX_EXPORT AXTreeCombiner {
std::map<int32_t, const AXTreeUpdate*> tree_id_map_;
std::map<std::pair<int32_t, int32_t>, int32_t> tree_id_node_id_map_;
AXTreeUpdate combined_;
- gfx::Transform transform_;
};
« no previous file with comments | « no previous file | ui/accessibility/ax_tree_combiner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698