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

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

Issue 8547012: Various test script changes: (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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/test_options.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_progress.dart
diff --git a/tools/testing/dart/test_progress.dart b/tools/testing/dart/test_progress.dart
index 23d615325a7a7a7b5bac5b0327b15e45d24b859e..5c3559d9673d27127e75d614f75d31ce31c23e1d 100644
--- a/tools/testing/dart/test_progress.dart
+++ b/tools/testing/dart/test_progress.dart
@@ -116,7 +116,7 @@ class ProgressIndicator {
class CompactProgressIndicator extends ProgressIndicator {
- CompactProgressIndicator(Date start_time) : super(start_time);
+ CompactProgressIndicator(Date startTime) : super(startTime);
void allDone() {
}
@@ -138,7 +138,7 @@ class CompactProgressIndicator extends ProgressIndicator {
class LineProgressIndicator extends ProgressIndicator {
- LineProgressIndicator(Date start_time) : super(start_time);
+ LineProgressIndicator(Date startTime) : super(startTime);
void allDone() {
_printStatus();
@@ -158,7 +158,7 @@ class LineProgressIndicator extends ProgressIndicator {
class VerboseProgressIndicator extends ProgressIndicator {
- VerboseProgressIndicator(Date start_time) : super(start_time);
+ VerboseProgressIndicator(Date startTime) : super(startTime);
void allDone() {
_printStatus();
@@ -179,7 +179,7 @@ class VerboseProgressIndicator extends ProgressIndicator {
class StatusProgressIndicator extends ProgressIndicator {
- StatusProgressIndicator(Date start_time) : super(start_time);
+ StatusProgressIndicator(Date startTime) : super(startTime);
void allDone() {
_printStatus();
@@ -194,7 +194,7 @@ class StatusProgressIndicator extends ProgressIndicator {
class BuildbotProgressIndicator extends ProgressIndicator {
- BuildbotProgressIndicator(Date start_time) : super(start_time);
+ BuildbotProgressIndicator(Date startTime) : super(startTime);
void allDone() {
_printStatus();
« no previous file with comments | « tools/testing/dart/test_options.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698