- 21 May, 2019 16 commits
-
-
engine-flutter-autoroll authored
74aaf735a Roll src/third_party/skia 54fbe0f813c1..12710911dcc2 (5 commits) (flutter/engine#9032) (#33141) https://github.com/flutter/engine/compare/6dd38f3b8575...74aaf735a474 git log 6dd38f3b85753f5830ac490de15547ec3a588ac0..74aaf735a4744ea2274ccec8aee2263071e52e29 --no-merges --oneline 74aaf735a Roll src/third_party/skia 54fbe0f813c1..12710911dcc2 (5 commits) (flutter/engine#9032) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (garyq@google.com), and stop the roller if necessary.
-
Greg Spencer authored
This just fixes up some comments for DefaultFocusTraversal, and fixes a minor bug when setting the onKey on a FocusNode on creation before attaching to it.
-
Christopher Fujino authored
* don't send crash reports if on a user branch. * add test to test/crash_reporting_test.dart
-
Todd Volkert authored
This re-applies #32437 with a fix to the broken device lab test.
-
Efthymis Sarmpanis authored
(all tests passed, github not displaying it)
-
Zachary Anderson authored
-
Shi-Hao Hong authored
-
engine-flutter-autoroll authored
6dd38f3b8 Roll src/third_party/skia 1903c94f44fd..54fbe0f813c1 (6 commits) (flutter/engine#9030) (#33128) https://github.com/flutter/engine/compare/301f560bd835...6dd38f3b8575 git log 301f560bd835e462134b491f1d5a74d21d03f3a8..6dd38f3b85753f5830ac490de15547ec3a588ac0 --no-merges --oneline 6dd38f3b8 Roll src/third_party/skia 1903c94f44fd..54fbe0f813c1 (6 commits) (flutter/engine#9030) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (garyq@google.com), and stop the roller if necessary.
-
Michael Thomsen authored
-
engine-flutter-autoroll authored
301f560bd Roll src/third_party/skia dbc3caaf6c3d..1903c94f44fd (1 commits) (flutter/engine#9028) (#33096) https://github.com/flutter/engine/compare/e40768c63a00...301f560bd835 git log e40768c63a00252062ea1061a6db9e756ccb65e8..301f560bd835e462134b491f1d5a74d21d03f3a8 --no-merges --oneline 301f560bd Roll src/third_party/skia dbc3caaf6c3d..1903c94f44fd (1 commits) (flutter/engine#9028) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (jsimmons@google.com), and stop the roller if necessary.
-
engine-flutter-autoroll authored
https://github.com/flutter/engine/compare/3d2e9b24aa71...e40768c63a00 git log 3d2e9b24aa712ba60206e7ac392a709df0939635..e40768c63a00252062ea1061a6db9e756ccb65e8 --no-merges --oneline e40768c63 Initialize next_pointer_flow_id_ to 0 (flutter/engine#9026) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (jsimmons@google.com), and stop the roller if necessary.
-
engine-flutter-autoroll authored
https://github.com/flutter/engine/compare/e3772232c2d2...3d2e9b24aa71 git log e3772232c2d24c174beac7ef03dff63907cdda46..3d2e9b24aa712ba60206e7ac392a709df0939635 --no-merges --oneline 3d2e9b24a Correct the return type of addRetained (flutter/engine#9025) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (jsimmons@google.com), and stop the roller if necessary.
-
Darren Austin authored
-
Todd Volkert authored
The current API was broken in that you registered multiple callbacks at once, but when you removed listeners, only the primary listener was used to determine what was removed. This led to unintuitive cases where the caller could get unexpected behavior. This updates the API to add and remove listeners using a newly introduced [ImageStreamListener] object, a value object that has references to the individual callbacks that may fire. flutter/flutter#24722 flutter/flutter#32374 flutter/flutter#32935
-
Greg Spencer authored
Resets the enabled color for outline text field default borders to "On Surface 38%" instead of "On Surface 12%" to match spec. Also fixes the hover overlay to be "On Surface 12%" to match spec.
-
engine-flutter-autoroll authored
https://github.com/flutter/engine/compare/e1599ccd3f89...e3772232c2d2 git log e1599ccd3f89943a11c89ac8a31cc7d3edd72073..e3772232c2d24c174beac7ef03dff63907cdda46 --no-merges --oneline e3772232c Roll src/third_party/dart 82c8c78739..b48c8b1d1c (5 commits) (flutter/engine#9021) 14912e8e1 Roll src/third_party/skia d93ee53affd3..dbc3caaf6c3d (9 commits) (flutter/engine#9024) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (jsimmons@google.com), and stop the roller if necessary.
-
- 20 May, 2019 20 commits
-
-
Todd Volkert authored
This will allow us to plumb the chunks in a chunked response up to the higher levels of the framework to notify interested parties of network loading progress. https://github.com/flutter/flutter/issues/32374
-
Todd Volkert authored
Currently, the fact that NetworkImage uses a static HttpClient makes it impossible to properly test, as a mock in one test will be reused in another test. This change fixes that. https://github.com/flutter/flutter/issues/32374
-
engine-flutter-autoroll authored
https://github.com/flutter/engine/compare/dbf083bda157...e1599ccd3f89 git log dbf083bda15740c6c10891a402c81c4ebf67e0fd..e1599ccd3f89943a11c89ac8a31cc7d3edd72073 --no-merges --oneline e1599ccd3 Fix horizontal scroll direction for macOS (flutter/engine#9022) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (jsimmons@google.com), and stop the roller if necessary.
-
Efthymis Sarmpanis authored
-
engine-flutter-autoroll authored
https://github.com/flutter/engine/compare/760fea25cf41...dbf083bda157 git log 760fea25cf41aa2541f29a3123eabacd92a5a204..dbf083bda15740c6c10891a402c81c4ebf67e0fd --no-merges --oneline dbf083bda Macos systemnavigator pop (flutter/engine#9019) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (jsimmons@google.com), and stop the roller if necessary.
-
engine-flutter-autoroll authored
https://github.com/flutter/engine/compare/20f5000bc5ee...760fea25cf41 git log 20f5000bc5eef9fcf099084ed0440566392719b0..760fea25cf41aa2541f29a3123eabacd92a5a204 --no-merges --oneline 760fea25c remove m prefix from fields in the Android PlatformViews code (flutter/engine#9020) 75678602b Minor fixes/adjustments to the GLFW shell (flutter/engine#8990) effc21473 Roll src/third_party/skia a8ceb775c12f..d93ee53affd3 (8 commits) (flutter/engine#9018) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (jsimmons@google.com), and stop the roller if necessary.
-
Greg Spencer authored
This turns off focus highlight for filled text fields, since it turns out not to be to spec.
-
Todd Volkert authored
This reverts commit 069303d4.
-
Emmanuel Garcia authored
-
Sam Rawlins authored
-
engine-flutter-autoroll authored
https://github.com/flutter/engine/compare/3a509192aad9...20f5000bc5ee git log 3a509192aad9e0b52c49846fa9f258a03952fa88..20f5000bc5eef9fcf099084ed0440566392719b0 --no-merges --oneline 20f5000bc Add mode to load AOT snapshots as a native lib (flutter/engine#8979) ec347cfbb Roll src/third_party/dart ed169c4bb0..82c8c78739 (17 commits) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (jsimmons@google.com), and stop the roller if necessary.
-
Sam Rawlins authored
-
Todd Volkert authored
-
engine-flutter-autoroll authored
3a509192a Roll src/third_party/skia f4c66ccafcb7..a8ceb775c12f (3 commits) (flutter/engine#9015) (#33049) https://github.com/flutter/engine/compare/adc946e74632...3a509192aad9 git log adc946e746329cfe7bf2e77e8ddb943e53d27fb9..3a509192aad9e0b52c49846fa9f258a03952fa88 --no-merges --oneline 3a509192a Roll src/third_party/skia f4c66ccafcb7..a8ceb775c12f (3 commits) (flutter/engine#9015) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (jsimmons@google.com), and stop the roller if necessary.
-
Alexandre Ardhuin authored
-
Todd Volkert authored
* AnimatedList * Flexible * Draggable * ValueListenableBuilder
-
engine-flutter-autoroll authored
adc946e74 Roll src/third_party/skia 6a8c3f07e81a..f4c66ccafcb7 (2 commits) (flutter/engine#9013) (#33031) https://github.com/flutter/engine/compare/83137188d7b0...adc946e74632 git log 83137188d7b08cc8ef464f276c223ab6052e29e2..adc946e746329cfe7bf2e77e8ddb943e53d27fb9 --no-merges --oneline adc946e74 Roll src/third_party/skia 6a8c3f07e81a..f4c66ccafcb7 (2 commits) (flutter/engine#9013) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (jsimmons@google.com), and stop the roller if necessary.
-
engine-flutter-autoroll authored
https://github.com/flutter/engine/compare/639c2d0700d6...83137188d7b0 git log 639c2d0700d66a960d3305e8b0a4e709b91acfdf..83137188d7b08cc8ef464f276c223ab6052e29e2 --no-merges --oneline 83137188d Roll src/third_party/dart 9e30fbaea4..ed169c4bb0 (4 commits) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (jsimmons@google.com), and stop the roller if necessary.
-
engine-flutter-autoroll authored
639c2d070 Roll src/third_party/skia ed2255b4ea13..6a8c3f07e81a (1 commits) (flutter/engine#9011) (#33025) https://github.com/flutter/engine/compare/beb8e7512142...639c2d0700d6 git log beb8e75121422675c5aa328c31af617e551695e0..639c2d0700d66a960d3305e8b0a4e709b91acfdf --no-merges --oneline 639c2d070 Roll src/third_party/skia ed2255b4ea13..6a8c3f07e81a (1 commits) (flutter/engine#9011) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (jsimmons@google.com), and stop the roller if necessary.
-
- 19 May, 2019 2 commits
-
-
xster authored
-
engine-flutter-autoroll authored
beb8e7512 Roll src/third_party/skia 8c6bfe5350cf..ed2255b4ea13 (1 commits) (flutter/engine#9009) (#32988) https://github.com/flutter/engine/compare/db852610b4f5...beb8e7512142 git log db852610b4f51792c2a74c8576681342a9cbcf1e..beb8e75121422675c5aa328c31af617e551695e0 --no-merges --oneline beb8e7512 Roll src/third_party/skia 8c6bfe5350cf..ed2255b4ea13 (1 commits) (flutter/engine#9009) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (jsimmons@google.com), and stop the roller if necessary.
-
- 18 May, 2019 2 commits
-
-
Greg Spencer authored
Disabled fields and buttons were responding to hover and focus changes, and they shouldn't.
-
Greg Spencer authored
This puts the new AnimationController reverseDuration argument to use in two places: focus for InkWells and fade out for Tooltips.
-