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

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

Issue 10392023: Change dart:io to use Future for one-shot operations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Adding stable test binaries Created 8 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
« no previous file with comments | « tools/testing/bin/windows/dart.exe ('k') | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/drt_updater.dart
diff --git a/tools/testing/dart/drt_updater.dart b/tools/testing/dart/drt_updater.dart
index 4a42482e71b61fe7c6f738ea9ff4dba54eda6655..6c3dcaf340e0c52dad8fc31e02dee653644a79cc 100644
--- a/tools/testing/dart/drt_updater.dart
+++ b/tools/testing/dart/drt_updater.dart
@@ -25,7 +25,7 @@ class _DartiumUpdater {
isActive = true;
print('Updating $name.');
onUpdated = [() {updated = true;} ];
- _updatingProcess = new Process.start('python', _getUpdateCommand);
+ _updatingProcess = Process.start('python', _getUpdateCommand);
_updatingProcess.onExit = _onUpdatedHandler;
_updatingProcess.onError = (error) {
print("Error starting $script process: $error");
« no previous file with comments | « tools/testing/bin/windows/dart.exe ('k') | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698