1. 10 Dec, 2019 3 commits
  2. 09 Dec, 2019 13 commits
  3. 07 Dec, 2019 1 commit
  4. 06 Dec, 2019 15 commits
  5. 05 Dec, 2019 8 commits
    • Jonah Williams's avatar
    • Greg Spencer's avatar
      Fixes Focus and FocusScope's assignment of canRequestFocus. (#46168) · e3005e69
      Greg Spencer authored
      This fixes an issue where lines like this:
      
          focusNode.canRequestFocus = widget.canRequestFocus ?? focusNode.canRequestFocus;
      
      Were causing the canRequestFocus bit to copy the status of the enclosing scope, since canRequestFocus also looks to the enclosing scope to decide if it can focus.
      e3005e69
    • engine-flutter-autoroll's avatar
      Roll engine fdaa7cf12175..ee4c2a53c7c6 (8 commits) (#46178) · cb0dcbe1
      engine-flutter-autoroll authored
      
      git@github.com:flutter/engine.git/compare/fdaa7cf12175...ee4c2a53c7c6
      
      git log fdaa7cf12175..ee4c2a53c7c6 --first-parent --oneline
      2019-12-05 skia-flutter-autoroll@skia.org Roll src/third_party/skia 6344c2937997..0af32fdf5fea (12 commits) (#14139)
      2019-12-05 dworsham@google.com Wire up Opacity on Fuchsia, round 2 (#14024)
      2019-12-05 gw280@google.com Disable fml_tests until they're fixed on Fuchsia (#14137)
      2019-12-05 30870216+gaaclarke@users.noreply.github.com Started specifying the OS version for running the tests. (#14094)
      2019-12-04 skia-flutter-autoroll@skia.org Roll src/third_party/skia ccca30aad770..6344c2937997 (13 commits) (#14133)
      2019-12-04 30870216+gaaclarke@users.noreply.github.com Expanded our scenario_app docs. (#14136)
      2019-12-04 yjbanov@google.com [web][felt] fix source map path (#14134)
      2019-12-04 chinmaygarde@google.com Fix platform view offsets incorrectly taking into account device pixel ratios. (#14135)
      
      
      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 chinmaygarde@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/+/master/autoroll/README.md
      cb0dcbe1
    • Kaushik Iska's avatar
      Manual roll engine fdaa7cf12175..ee4c2a53c7c6 (8 commits) (#46174) · 6705d08f
      Kaushik Iska authored
      git@github.com:flutter/engine.git/compare/fdaa7cf12175...ee4c2a53c7c6
      
      git log fdaa7cf12175..ee4c2a53c7c6 --first-parent --oneline
      2019-12-05 skia-flutter-autoroll@skia.org Roll src/third_party/skia 6344c2937997..0af32fdf5fea (12 commits) (#14139)
      2019-12-05 dworsham@google.com Wire up Opacity on Fuchsia, round 2 (#14024)
      2019-12-05 gw280@google.com Disable fml_tests until they're fixed on Fuchsia (#14137)
      2019-12-05 30870216+gaaclarke@users.noreply.github.com Started specifying the OS version for running the tests. (#14094)
      2019-12-04 skia-flutter-autoroll@skia.org Roll src/third_party/skia ccca30aad770..6344c2937997 (13 commits) (#14133)
      2019-12-04 30870216+gaaclarke@users.noreply.github.com Expanded our scenario_app docs. (#14136)
      2019-12-04 yjbanov@google.com [web][felt] fix source map path (#14134)
      2019-12-04 chinmaygarde@google.com Fix platform view offsets incorrectly taking into account device pixel ratios. (#14135)
      6705d08f
    • Alexandre Ardhuin's avatar
      implicit-casts:false in dev (#45787) · ec1a0150
      Alexandre Ardhuin authored
      ec1a0150
    • Chris Bracken's avatar
      Dispatch hover events to PlatformViewController (#46124) · fa0c49d7
      Chris Bracken authored
      This adds support to PlatformViewLayer for handling hover events. Prior
      to this, PlatformViewLayers only supported events forwarded by the
      gesture recognizers associated with the PlatformViewRenderBox. Hover
      events don't participate in gesture recognition and as such are dropped
      in GestureBinding. That said, hover event processing in platform views
      is expected for desktop and other platforms with hover event support.
      
      This adds support for passing an optional MouseTrackerAnnotation to
      PlatformViewLayer. PlatformViewRenderBox populates this with a mouse
      tracker annotation that forwards hover events to
      PlatformViewController.dispatchPointerEvent() for handling by users.
      fa0c49d7
    • gaaclarke's avatar
      Made the behavior for caching large images modular. (#46010) · 86dd664f
      gaaclarke authored
      Introduced LargeImageHandler to ImageCache class.
      86dd664f
    • Alexandre Ardhuin's avatar
      ec0842e0