Unverified Commit 2467c528 authored by Chris Bracken's avatar Chris Bracken Committed by GitHub

Roll engine 69ebe5fb28fc..a4b7d1c2895d (3 commits) (#33697)

https://github.com/flutter/engine/compare/69ebe5fb28fc..68a3ca46b40a

git log 69ebe5fb28fca271b23010d43d4dc7f6e5286c4f..a4b7d1c2895d82228705a021cdb7fdb2f71ac2a5 --no-merges --oneline
4c6253cdd Copy the macOS podspec during builds (#9158)
68a3ca46b Roll src/third_party/dart 445a23a9bc..0e6b74543c (29 commits) (#9159)
1d1cff1fa Roll src/third_party/skia 3cd435eecf5e..09f5aedf2cc8 (3 commits) (#9160)

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 (cbracken@google.com), and stop
the roller if necessary.
parent d0e45a23
69ebe5fb28fca271b23010d43d4dc7f6e5286c4f
a4b7d1c2895d82228705a021cdb7fdb2f71ac2a5
......@@ -1763,9 +1763,10 @@ class _MockHttpResponse extends Stream<List<int>> implements HttpClientResponse
@override
int get contentLength => -1;
// @override
// TODO(tvolkert): Uncomment @override annotation once SDK change lands.
bool get autoUncompress => true;
@override
HttpClientResponseCompressionState get compressionState {
return HttpClientResponseCompressionState.decompressed;
}
@override
List<Cookie> get cookies => null;
......
......@@ -47,6 +47,7 @@ export 'dart:io'
HttpClient,
HttpClientRequest,
HttpClientResponse,
HttpClientResponseCompressionState,
HttpHeaders,
HttpRequest,
HttpServer,
......
......@@ -1257,6 +1257,11 @@ class MockHttpClientResponse extends Stream<List<int>> implements HttpClientResp
@override
String get reasonPhrase => '<reason phrase>';
@override
HttpClientResponseCompressionState get compressionState {
return HttpClientResponseCompressionState.decompressed;
}
@override
StreamSubscription<List<int>> listen(
void onData(List<int> event), {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment