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

Unified Diff: samples/total/server/TotalRunner.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: Fixed a couple of uses in samples. 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
Index: samples/total/server/TotalRunner.dart
diff --git a/samples/total/server/TotalRunner.dart b/samples/total/server/TotalRunner.dart
index 20f668d34d7b1609f63bea0cb637a3c78ceb405f..5a03ae3b198d0dda10f4b2ac9419a2ac65fa8f1e 100755
--- a/samples/total/server/TotalRunner.dart
+++ b/samples/total/server/TotalRunner.dart
@@ -52,9 +52,9 @@ class ServerRunner {
if (foundExec == null) {
print("No executable found on DART_EXECS:\n" + DART_EXECS);
exitCallback(1, this);
- return;
+ return;
}
- Process dart = new Process.start(foundExec, [_serverMain]);
+ InteractiveProcess dart = Process.start(foundExec, [_serverMain]);
dart.onExit = (int status) {
dart.close();

Powered by Google App Engine
This is Rietveld 408576698