| Index: sdk/lib/html/dartium/html_dartium.dart
|
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
|
| index 7889de57d9c4393fc9fd1fc14d062da9ec28f691..d2c479cffe47baf96cc9cbc0106d1fe82e40dfad 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -35076,7 +35076,9 @@ class _PureIsolateTimer implements Timer {
|
|
|
| void cancel() {
|
| _cancel();
|
| - _HELPER_ISOLATE_PORT.send([_CANCEL_TIMER], _sendPort);
|
| + _HELPER_ISOLATE_PORT.then((port) {
|
| + port.send([_CANCEL_TIMER], _sendPort);
|
| + });
|
| }
|
|
|
| void _cancel() {
|
|
|