Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
10cf0ced
Unverified
Commit
10cf0ced
authored
Apr 17, 2018
by
Mikkel Nygaard Ravn
Committed by
GitHub
Apr 17, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Roll engine to 1bc0e1bb9a8db882a21086096cc2b1e0854312b7 (#16643)" (#16661)
parent
dd32d1b1
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
18 additions
and
18 deletions
+18
-18
engine.version
bin/internal/engine.version
+1
-1
decoration_test.dart
packages/flutter/test/painting/decoration_test.dart
+2
-2
image_stream_test.dart
packages/flutter/test/painting/image_stream_test.dart
+1
-1
paint_image_test.dart
packages/flutter/test/painting/paint_image_test.dart
+1
-1
shape_decoration_test.dart
packages/flutter/test/painting/shape_decoration_test.dart
+1
-1
image_test.dart
packages/flutter/test/rendering/image_test.dart
+4
-4
image_resolution_test.dart
packages/flutter/test/widgets/image_resolution_test.dart
+2
-2
image_rtl_test.dart
packages/flutter/test/widgets/image_rtl_test.dart
+2
-2
image_test.dart
packages/flutter/test/widgets/image_test.dart
+2
-2
flutter_platform.dart
packages/flutter_tools/lib/src/test/flutter_platform.dart
+2
-2
No files found.
bin/internal/engine.version
View file @
10cf0ced
1bc0e1bb9a8db882a21086096cc2b1e0854312b7
76cb311d9c33720dcd19274228b39ecdbad8d9af
packages/flutter/test/painting/decoration_test.dart
View file @
10cf0ced
...
...
@@ -4,7 +4,7 @@
import
'dart:async'
;
import
'dart:typed_data'
;
import
'dart:ui'
as
ui
show
Image
,
ColorFilter
;
import
'dart:ui'
as
ui
show
EncodingFormat
,
Image
,
ColorFilter
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/painting.dart'
;
...
...
@@ -90,7 +90,7 @@ class TestImage implements ui.Image {
void
dispose
()
{
}
@override
Future
<
ByteData
>
toByteData
()
async
{
Future
<
ByteData
>
toByteData
(
{
ui
.
EncodingFormat
format
}
)
async
{
throw
new
UnsupportedError
(
'Cannot encode test image'
);
}
}
...
...
packages/flutter/test/painting/image_stream_test.dart
View file @
10cf0ced
...
...
@@ -40,7 +40,7 @@ class FakeImage implements Image {
void
dispose
()
{}
@override
Future
<
ByteData
>
toByteData
()
async
{
Future
<
ByteData
>
toByteData
(
{
EncodingFormat
format
}
)
async
{
throw
new
UnsupportedError
(
'Cannot encode test image'
);
}
}
...
...
packages/flutter/test/painting/paint_image_test.dart
View file @
10cf0ced
...
...
@@ -23,7 +23,7 @@ class TestImage implements ui.Image {
void
dispose
()
{
}
@override
Future
<
ByteData
>
toByteData
()
async
{
Future
<
ByteData
>
toByteData
(
{
ui
.
EncodingFormat
format
}
)
async
{
throw
new
UnsupportedError
(
'Cannot encode test image'
);
}
}
...
...
packages/flutter/test/painting/shape_decoration_test.dart
View file @
10cf0ced
...
...
@@ -125,7 +125,7 @@ class TestImage implements ui.Image {
void
dispose
()
{
}
@override
Future
<
ByteData
>
toByteData
()
async
{
Future
<
ByteData
>
toByteData
(
{
ui
.
EncodingFormat
format
}
)
async
{
throw
new
UnsupportedError
(
'Cannot encode test image'
);
}
}
packages/flutter/test/rendering/image_test.dart
View file @
10cf0ced
...
...
@@ -4,7 +4,7 @@
import
'dart:async'
;
import
'dart:typed_data'
;
import
'dart:ui'
as
ui
show
Image
;
import
'dart:ui'
as
ui
show
EncodingFormat
,
Image
;
import
'package:flutter/rendering.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
...
...
@@ -19,7 +19,7 @@ class SquareImage implements ui.Image {
int
get
height
=>
10
;
@override
Future
<
ByteData
>
toByteData
()
async
{
Future
<
ByteData
>
toByteData
(
{
ui
.
EncodingFormat
format
}
)
async
{
throw
new
UnsupportedError
(
'Cannot encode test image'
);
}
...
...
@@ -38,7 +38,7 @@ class WideImage implements ui.Image {
int
get
height
=>
10
;
@override
Future
<
ByteData
>
toByteData
()
async
{
Future
<
ByteData
>
toByteData
(
{
ui
.
EncodingFormat
format
}
)
async
{
throw
new
UnsupportedError
(
'Cannot encode test image'
);
}
...
...
@@ -57,7 +57,7 @@ class TallImage implements ui.Image {
int
get
height
=>
20
;
@override
Future
<
ByteData
>
toByteData
()
async
{
Future
<
ByteData
>
toByteData
(
{
ui
.
EncodingFormat
format
}
)
async
{
throw
new
UnsupportedError
(
'Cannot encode test image'
);
}
...
...
packages/flutter/test/widgets/image_resolution_test.dart
View file @
10cf0ced
...
...
@@ -4,7 +4,7 @@
import
'dart:async'
;
import
'dart:typed_data'
;
import
'dart:ui'
as
ui
show
Image
;
import
'dart:ui'
as
ui
show
EncodingFormat
,
Image
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/rendering.dart'
;
...
...
@@ -26,7 +26,7 @@ class TestImage implements ui.Image {
void
dispose
()
{
}
@override
Future
<
ByteData
>
toByteData
()
async
{
Future
<
ByteData
>
toByteData
(
{
ui
.
EncodingFormat
format
}
)
async
{
throw
new
UnsupportedError
(
'Cannot encode test image'
);
}
}
...
...
packages/flutter/test/widgets/image_rtl_test.dart
View file @
10cf0ced
...
...
@@ -4,7 +4,7 @@
import
'dart:async'
;
import
'dart:typed_data'
;
import
'dart:ui'
as
ui
show
Image
;
import
'dart:ui'
as
ui
show
EncodingFormat
,
Image
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/widgets.dart'
;
...
...
@@ -37,7 +37,7 @@ class TestImage implements ui.Image {
void
dispose
()
{
}
@override
Future
<
ByteData
>
toByteData
()
async
{
Future
<
ByteData
>
toByteData
(
{
ui
.
EncodingFormat
format
}
)
async
{
throw
new
UnsupportedError
(
'Cannot encode test image'
);
}
}
...
...
packages/flutter/test/widgets/image_test.dart
View file @
10cf0ced
...
...
@@ -4,7 +4,7 @@
import
'dart:async'
;
import
'dart:typed_data'
;
import
'dart:ui'
as
ui
show
Image
;
import
'dart:ui'
as
ui
show
EncodingFormat
,
Image
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/rendering.dart'
;
...
...
@@ -484,7 +484,7 @@ class TestImage implements ui.Image {
void
dispose
()
{
}
@override
Future
<
ByteData
>
toByteData
()
async
{
Future
<
ByteData
>
toByteData
(
{
ui
.
EncodingFormat
format
}
)
async
{
throw
new
UnsupportedError
(
'Cannot encode test image'
);
}
...
...
packages/flutter_tools/lib/src/test/flutter_platform.dart
View file @
10cf0ced
...
...
@@ -275,7 +275,7 @@ class _FlutterPlatform extends PlatformPlugin {
dynamic
outOfBandError
;
// error that we couldn't send to the harness that we need to send via our future
final
List
<
_Finalizer
>
finalizers
=
<
_Finalizer
>[];
// Note: will be run in reverse order.
final
List
<
_Finalizer
>
finalizers
=
<
_Finalizer
>[];
bool
subprocessActive
=
false
;
bool
controllerSinkClosed
=
false
;
try
{
...
...
@@ -511,7 +511,7 @@ class _FlutterPlatform extends PlatformPlugin {
}
}
finally
{
printTrace
(
'test
$ourTestCount
: cleaning up...'
);
for
(
_Finalizer
finalizer
in
finalizers
.
reversed
)
{
for
(
_Finalizer
finalizer
in
finalizers
)
{
try
{
await
finalizer
();
}
catch
(
error
,
stack
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment