From 565e48777ab207c1cce241f704f14b20b4e258f3 Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Fri, 5 Mar 2021 10:10:32 -0800 Subject: [PATCH] Roll Engine from 299eb3e710c1 to 67abe7f9a9e4 (13 revisions) (#77386) This is a manual roll since it requires adding a new SemanticsAction to an element in the flutter_test SemanticsAction matchers test which was added as part of https://github.com/flutter/engine/pull/24734. https://github.com/flutter/engine/compare/299eb3e710c1...67abe7f9a9e4 2021-03-05 skia-flutter-autoroll@skia.org Roll Skia from 994a571fc79a to 532138cea7ea (4 revisions) (flutter/engine#24812) 2021-03-05 skia-flutter-autoroll@skia.org Roll Dart SDK from b321d01eec78 to 4693d6d4f88e (1 revision) (flutter/engine#24811) 2021-03-05 skia-flutter-autoroll@skia.org Roll Dart SDK from 835da00aa6b5 to b321d01eec78 (1 revision) (flutter/engine#24808) 2021-03-05 skia-flutter-autoroll@skia.org Roll Skia from d42fe062d0a7 to 994a571fc79a (1 revision) (flutter/engine#24806) 2021-03-05 skia-flutter-autoroll@skia.org Roll Skia from 3b58d38966f4 to d42fe062d0a7 (2 revisions) (flutter/engine#24805) 2021-03-05 skia-flutter-autoroll@skia.org Roll Skia from 6ba242d2a201 to 3b58d38966f4 (1 revision) (flutter/engine#24804) 2021-03-05 skia-flutter-autoroll@skia.org Roll Dart SDK from 1b674d73af53 to 835da00aa6b5 (1 revision) (flutter/engine#24803) 2021-03-05 chris@bracken.jp Update cppwinrt to build 2.0.210304.5 (flutter/engine#24801) 2021-03-05 skia-flutter-autoroll@skia.org Roll Skia from 55aaefe687c7 to 6ba242d2a201 (18 revisions) (flutter/engine#24799) 2021-03-05 47866232+chunhtai@users.noreply.github.com Adds set text action for voice access (flutter/engine#24734) 2021-03-04 jason-simmons@users.noreply.github.com SkParagraph: support multiple default font families (flutter/engine#24662) 2021-03-04 skia-flutter-autoroll@skia.org Roll Clang Mac from MQQ43_LGr... to MRLGJYv8V... (flutter/engine#24794) 2021-03-04 jason-simmons@users.noreply.github.com Allow calls to legacyMakeTypeface in the AssetFontManager (flutter/engine#24612) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC cbracken@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/master/autoroll/README.md --- bin/internal/engine.version | 2 +- packages/flutter_test/lib/src/matchers.dart | 2 ++ packages/flutter_test/test/matchers_test.dart | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/internal/engine.version b/bin/internal/engine.version index bf5a73c430..600d80a767 100644 --- a/bin/internal/engine.version +++ b/bin/internal/engine.version @@ -1 +1 @@ -299eb3e710c14dfa73afbb9c345a32056b4b699c +67abe7f9a9e4e6497dcbb1c92335394cb630020c diff --git a/packages/flutter_test/lib/src/matchers.dart b/packages/flutter_test/lib/src/matchers.dart index 43c763af4d..eb69b9ecce 100644 --- a/packages/flutter_test/lib/src/matchers.dart +++ b/packages/flutter_test/lib/src/matchers.dart @@ -483,6 +483,7 @@ Matcher matchesSemantics({ bool hasMoveCursorBackwardByCharacterAction = false, bool hasMoveCursorForwardByWordAction = false, bool hasMoveCursorBackwardByWordAction = false, + bool hasSetTextAction = false, bool hasSetSelectionAction = false, bool hasCopyAction = false, bool hasCutAction = false, @@ -546,6 +547,7 @@ Matcher matchesSemantics({ if (hasDismissAction) SemanticsAction.dismiss, if (hasMoveCursorForwardByWordAction) SemanticsAction.moveCursorForwardByWord, if (hasMoveCursorBackwardByWordAction) SemanticsAction.moveCursorBackwardByWord, + if (hasSetTextAction) SemanticsAction.setText, ]; SemanticsHintOverrides? hintOverrides; if (onTapHint != null || onLongPressHint != null) diff --git a/packages/flutter_test/test/matchers_test.dart b/packages/flutter_test/test/matchers_test.dart index 2077135c21..7efaf76531 100644 --- a/packages/flutter_test/test/matchers_test.dart +++ b/packages/flutter_test/test/matchers_test.dart @@ -608,6 +608,7 @@ void main() { hasMoveCursorBackwardByCharacterAction: true, hasMoveCursorForwardByWordAction: true, hasMoveCursorBackwardByWordAction: true, + hasSetTextAction: true, hasSetSelectionAction: true, hasCopyAction: true, hasCutAction: true,