Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 78d774b

Browse files
committed
fix content_handler
1 parent 682a3de commit 78d774b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

content_handler/accessibility_bridge.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ AccessibilityBridge::AccessibilityBridge(app::ApplicationContext* context)
2121

2222
void AccessibilityBridge::UpdateSemantics(
2323
const blink::SemanticsNodeUpdates& update) {
24-
for (const auto& node : update) {
24+
for (const auto& update : update) {
25+
const auto& node = update.second;
2526
semantics_nodes_[node.id] = node;
2627
}
2728
std::vector<int> visited_nodes;

0 commit comments

Comments
 (0)