From cd2077b2843c5e2f7b6a2d57e24e03ba56ab192c Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Thu, 29 Jan 2026 15:42:37 +0900 Subject: [PATCH] [engine] Sync Flutter 3.38.8 source code --- DEPS | 2 +- flutter/shell/platform/common/accessibility_bridge.cc | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/DEPS b/DEPS index 318bf462..2ec7cd49 100644 --- a/DEPS +++ b/DEPS @@ -7,7 +7,7 @@ deps = { 'src/third_party/libcxx': 'https://llvm.googlesource.com/llvm-project/libcxx@bd557f6f764d1e40b62528a13b124ce740624f8f', 'src/third_party/libcxxabi': 'https://llvm.googlesource.com/llvm-project/libcxxabi@a4dda1589d37a7e4b4f7a81ebad01b1083f2e726', 'src/third_party/googletest': 'https://github.com/google/googletest@7f036c5563af7d0329f20e8bb42effb04629f0c0', - 'src/third_party/dart': 'https://dart.googlesource.com/sdk.git@13d929085afa86e5902ed7293cca8509f099ee97', + 'src/third_party/dart': 'https://dart.googlesource.com/sdk.git@2da4111d8d0cbf2a83c0662251508f017000da8a', 'src/third_party/clang': { 'packages': [ { diff --git a/flutter/shell/platform/common/accessibility_bridge.cc b/flutter/shell/platform/common/accessibility_bridge.cc index 47ad416d..70934026 100644 --- a/flutter/shell/platform/common/accessibility_bridge.cc +++ b/flutter/shell/platform/common/accessibility_bridge.cc @@ -497,6 +497,7 @@ void AccessibilityBridge::SetIntListAttributesFromFlutterUpdate( FlutterSemanticsAction actions = node.actions; if (actions & FlutterSemanticsAction::kFlutterSemanticsActionCustomAction) { std::vector custom_action_ids; + custom_action_ids.reserve(node.custom_accessibility_actions.size()); for (size_t i = 0; i < node.custom_accessibility_actions.size(); i++) { custom_action_ids.push_back(node.custom_accessibility_actions[i]); }