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
394a7369
Commit
394a7369
authored
Jan 13, 2017
by
Michael Goderbauer
Committed by
GitHub
Jan 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Roll engine to b3ed79122edd7172327ce415688ef674d6a7fa5d (#7476)
fixes #7433
parent
55beaef7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
6 deletions
+1
-6
engine.version
bin/internal/engine.version
+1
-1
extension.dart
packages/flutter_driver/lib/src/extension.dart
+0
-3
binding.dart
packages/flutter_test/lib/src/binding.dart
+0
-2
No files found.
bin/internal/engine.version
View file @
394a7369
fc421489b154c6ceb1b8a063541d5a5d4372db6b
b3ed79122edd7172327ce415688ef674d6a7fa5d
packages/flutter_driver/lib/src/extension.dart
View file @
394a7369
...
@@ -168,9 +168,6 @@ class _FlutterDriverExtension {
...
@@ -168,9 +168,6 @@ class _FlutterDriverExtension {
subscription
=
_onFrameReady
.
listen
((
Duration
duration
)
{
subscription
=
_onFrameReady
.
listen
((
Duration
duration
)
{
if
(
finder
.
precache
())
{
if
(
finder
.
precache
())
{
subscription
.
cancel
();
subscription
.
cancel
();
// TODO(goderbauer): Remove workaround for https://github.com/flutter/flutter/issues/7433
Timer
.
run
(()
{});
// end workaround
completer
.
complete
(
finder
);
completer
.
complete
(
finder
);
}
}
});
});
...
...
packages/flutter_test/lib/src/binding.dart
View file @
394a7369
...
@@ -631,8 +631,6 @@ class LiveTestWidgetsFlutterBinding extends TestWidgetsFlutterBinding {
...
@@ -631,8 +631,6 @@ class LiveTestWidgetsFlutterBinding extends TestWidgetsFlutterBinding {
super
.
handleBeginFrame
(
rawTimeStamp
);
super
.
handleBeginFrame
(
rawTimeStamp
);
if
(
_expectingFrame
)
{
if
(
_expectingFrame
)
{
assert
(
_pendingFrame
!=
null
);
assert
(
_pendingFrame
!=
null
);
// TODO(yjbanov): workaroud for https://github.com/flutter/flutter/issues/7433
Timer
.
run
(()
{});
// forces runtime to flush Completer.complete() microtask
_pendingFrame
.
complete
();
// unlocks the test API
_pendingFrame
.
complete
();
// unlocks the test API
_pendingFrame
=
null
;
_pendingFrame
=
null
;
_expectingFrame
=
false
;
_expectingFrame
=
false
;
...
...
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