commit | 1fef47c58d9a4fe6648003943d634ca49db08ad2 | [log] [tgz] |
---|---|---|
author | Lauren Winston <[email protected]> | Wed Apr 23 03:12:14 2025 |
committer | Chromium LUCI CQ <[email protected]> | Wed Apr 23 03:12:14 2025 |
tree | caca3f2c9565d1bed8a6c71471066b42d9570b5b | |
parent | befad8509a8fc9cfc0848622d1c7db80b7df9e77 [diff] [blame] |
Remove const from MergeAXTreeUpdates param. Follow up work for crrev.com/c/6399194 Bug: 406533891 Change-Id: Idfeb71766cd22d6c9a99b83ac177aa741d0c4d6d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6409956 Reviewed-by: David Tseng <[email protected]> Reviewed-by: Rakina Zata Amni <[email protected]> Commit-Queue: Lauren Winston <[email protected]> Cr-Commit-Position: refs/heads/main@{#1450367}
diff --git a/ui/accessibility/ax_tree_update_util.h b/ui/accessibility/ax_tree_update_util.h index 0c3e5fa..18d90af 100644 --- a/ui/accessibility/ax_tree_update_util.h +++ b/ui/accessibility/ax_tree_update_util.h
@@ -22,7 +22,7 @@ // // Merging tree updates helps minimize the overhead of calling // Unserialize multiple times. -AX_EXPORT bool MergeAXTreeUpdates(const std::vector<AXTreeUpdate>& src, +AX_EXPORT bool MergeAXTreeUpdates(std::vector<AXTreeUpdate>& src, std::vector<AXTreeUpdate>* dst); } // namespace ui