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

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

Issue 11035027: Add in-process http server to the dart test scripts. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address more comments. Created 8 years, 2 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
Index: tools/testing/dart/test_progress.dart
diff --git a/tools/testing/dart/test_progress.dart b/tools/testing/dart/test_progress.dart
index 5343ac0d363e02e6e8664057cf2676980aa1d4bd..1f1f55702609dbaac0b231f361c002e50877f91a 100644
--- a/tools/testing/dart/test_progress.dart
+++ b/tools/testing/dart/test_progress.dart
@@ -220,7 +220,7 @@ class SilentProgressIndicator extends ProgressIndicator {
}
}
-class CompactIndicator extends ProgressIndicator {
+abstract class CompactIndicator extends ProgressIndicator {
CompactIndicator(Date startTime, bool printTiming)
: super(startTime, printTiming);
@@ -250,7 +250,7 @@ class CompactIndicator extends ProgressIndicator {
void _printStartProgress(TestCase test) => _printProgress();
void _printDoneProgress(TestCase test) => _printProgress();
- abstract void _printProgress();
+ void _printProgress();
}

Powered by Google App Engine
This is Rietveld 408576698