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

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

Issue 2946783002: Simplify CommandOutput and friends. (Closed)
Patch Set: Merge branch 'master' into simplify-command-output Created 3 years, 6 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 | « no previous file | tools/testing/dart/command.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/browser_controller.dart
diff --git a/tools/testing/dart/browser_controller.dart b/tools/testing/dart/browser_controller.dart
index ce5ad9053234ffe786aaa004c38e2778424c2ed7..3700a29aeb6814ea3252307f52b91ce5a7ff01f4 100644
--- a/tools/testing/dart/browser_controller.dart
+++ b/tools/testing/dart/browser_controller.dart
@@ -505,10 +505,9 @@ class Chrome extends Browser {
"--no-first-run",
];
- // TODO(rnystrom): If you want Chrome to spawn with the dev tools tab
- // open, which is handy for debugging, add:
- //
- // --auto-open-devtools-for-tabs
+ // TODO(rnystrom): Uncomment this to open the dev tools tab when Chrome
+ // is spawned. Handy for debugging tests.
+ // args.add("--auto-open-devtools-for-tabs");
return startBrowserProcess(_binary, args,
environment: _getEnvironment());
« no previous file with comments | « no previous file | tools/testing/dart/command.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698