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

Unified Diff: pkg/args/example/test_runner.dart

Issue 15755017: Switch from DRT to content shell. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
Index: pkg/args/example/test_runner.dart
diff --git a/pkg/args/example/test_runner.dart b/pkg/args/example/test_runner.dart
index d0a6ed8eae074788e19d9dee8f1955011500eb5a..74750ae9069b7bce984335c5ba72ca558eff2d86 100644
--- a/pkg/args/example/test_runner.dart
+++ b/pkg/args/example/test_runner.dart
@@ -40,8 +40,9 @@ main() {
allowedHelp: {
'vm': 'Run Dart code on the standalone dart vm.',
'd8': 'Run JavaScript from the command line using v8.',
+ // TODO(antonm): rename flag.
'drt': 'Run Dart or JavaScript in the headless version of Chrome,\n'
- 'DumpRenderTree.',
+ 'content shell.',
'dartium': 'Run Dart or JavaScript in Dartium.',
'ff': 'Run JavaScript in Firefox',
'chrome': 'Run JavaScript in Chrome',
@@ -116,7 +117,8 @@ is 'dart file.dart' and you specify special command
defaultsTo: false);
parser.addOption('dart', help: 'Path to dart executable');
- parser.addOption('drt', help: 'Path to DumpRenderTree executable');
+ // TODO(antonm): rename the option.
+ parser.addOption('drt', help: 'Path to content shell executable');
parser.addOption('dartium', help: 'Path to Dartium Chrome executable');
parser.addFlag('batch', abbr: 'b',

Powered by Google App Engine
This is Rietveld 408576698