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

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

Issue 61793014: Fix launch_browser.dart after changes to utils.dart:Location (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/launch_browser.dart
diff --git a/tools/testing/dart/launch_browser.dart b/tools/testing/dart/launch_browser.dart
index 047182fa29bc9f80efb2ace998fc13543a1739da..0b752d33d5019c1eb9af824c713202bd1581abc6 100644
--- a/tools/testing/dart/launch_browser.dart
+++ b/tools/testing/dart/launch_browser.dart
@@ -12,6 +12,7 @@
import "dart:io";
import "browser_controller.dart";
+import "utils.dart";
void printHelp() {
print("Usage pattern:");
@@ -34,7 +35,7 @@ void main() {
return;
}
- var executable = Locations.getBrowserExecutable(name, {});
+ var executable = Locations.getBrowserLocation(name, {});
var browser = new Browser.byName(name, executable);
browser.start(args[1]);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698