Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: tools/testing/dart/drt_updater.dart

Issue 2863253002: Tighten up a bunch of types in test.dart. (Closed)
Patch Set: Merge branch 'master' into types-for-test Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/testing/dart/dependency_graph.dart ('k') | tools/testing/dart/http_server.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « tools/testing/dart/dependency_graph.dart ('k') | tools/testing/dart/http_server.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698