| Index: tools/testing/dart/drt_updater.dart
|
| diff --git a/tools/testing/dart/drt_updater.dart b/tools/testing/dart/drt_updater.dart
|
| index ee5a6285443b913625b20b8a58f06d11a48da6a7..04f72969d0ed68a2cb1243ad76b88ebdd7733223 100644
|
| --- a/tools/testing/dart/drt_updater.dart
|
| +++ b/tools/testing/dart/drt_updater.dart
|
| @@ -11,6 +11,8 @@ import "dart:io";
|
|
|
| import "test_suite.dart";
|
|
|
| +typedef void Action();
|
| +
|
| class _DartiumUpdater {
|
| String name;
|
| String script;
|
| @@ -18,7 +20,7 @@ class _DartiumUpdater {
|
|
|
| bool isActive = false;
|
| bool updated = false;
|
| - List onUpdated;
|
| + List<Action> onUpdated;
|
|
|
| Future<ProcessResult> _updatingProcess;
|
|
|
|
|