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

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

Issue 12211099: Fixing TransitionEnd event. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 | « tools/dom/templates/html/impl/impl_WebKitTransitionEvent.darttemplate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/http_server.dart
diff --git a/tools/testing/dart/http_server.dart b/tools/testing/dart/http_server.dart
index 6966ab3fcf88f0925011bfe37b52070baad597e7..8dcb6198324cb7975a983bb2435f47b6e16664e5 100644
--- a/tools/testing/dart/http_server.dart
+++ b/tools/testing/dart/http_server.dart
@@ -45,11 +45,11 @@ main() {
// TODO: We should probably rename 'package-root' to 'build-directory'.
TestingServerRunner._packageRootDir = new Path(args['package-root']);
TestingServerRunner._buildDirectory = new Path(args['package-root']);
- TestingServerRunner.startHttpServer('127.0.0.1',
+ TestingServerRunner.startHttpServer('0.0.0.0',
Emily Fortuna 2013/02/08 20:45:17 Can we put this in a separate CL that has Martin o
blois 2013/02/08 21:05:10 D'oh! thanks for catching. needed that for local t
port: int.parse(args['port']));
print('Server listening on port '
'${TestingServerRunner.serverList[0].port}.');
- TestingServerRunner.startHttpServer('127.0.0.1',
+ TestingServerRunner.startHttpServer('0.0.0.0',
allowedPort: TestingServerRunner.serverList[0].port, port:
int.parse(args['crossOriginPort']));
print(
« no previous file with comments | « tools/dom/templates/html/impl/impl_WebKitTransitionEvent.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698