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

Side by Side Diff: tools/testing/dart/test_progress.dart

Issue 2633213003: Do some housekeeping in tools/testing/dart (Closed)
Patch Set: Add comment Created 3 years, 11 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 unified diff | Download patch
« no previous file with comments | « tools/testing/dart/test_options.dart ('k') | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library test_progress; 5 library test_progress;
6 6
7 import "dart:async"; 7 import "dart:async";
8 import "dart:io"; 8 import "dart:io";
9 import "dart:io" as io; 9 import "dart:io" as io;
10 import "dart:convert" show JSON; 10 import "dart:convert" show JSON;
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 case 'line': 687 case 'line':
688 return new LineProgressIndicator(); 688 return new LineProgressIndicator();
689 case 'verbose': 689 case 'verbose':
690 return new VerboseProgressIndicator(startTime); 690 return new VerboseProgressIndicator(startTime);
691 case 'status': 691 case 'status':
692 return new ProgressIndicator(startTime); 692 return new ProgressIndicator(startTime);
693 case 'buildbot': 693 case 'buildbot':
694 return new BuildbotProgressIndicator(startTime); 694 return new BuildbotProgressIndicator(startTime);
695 default: 695 default:
696 assert(false); 696 assert(false);
697 break; 697 return null;
698 } 698 }
699 } 699 }
OLDNEW
« no previous file with comments | « tools/testing/dart/test_options.dart ('k') | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698