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

Unified Diff: runtime/bin/process.dart

Issue 8318009: Update the streams interfaces (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Starting implementation Created 9 years, 2 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 | « runtime/bin/input_stream.dart ('k') | runtime/bin/process_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/process.dart
diff --git a/runtime/bin/process.dart b/runtime/bin/process.dart
index d96b6464ca0db377bc25da4f5e99039b2b9b2b41..7826810987a8a03df5946de4f287382f886674dd 100644
--- a/runtime/bin/process.dart
+++ b/runtime/bin/process.dart
@@ -21,12 +21,12 @@ interface Process factory _Process {
/*
* Returns an input stream of the process stdout.
*/
- InputStream get stdoutStream();
+ InputStream2 get stdoutStream();
rchandia 2011/10/20 15:49:51 Can we rename this to stdout?
Søren Gjesse 2011/10/21 15:17:03 Sounds resonable. I will make a separate cl with t
/*
* Returns an input stream of the process stderr.
*/
- InputStream get stderrStream();
+ InputStream2 get stderrStream();
rchandia 2011/10/20 15:49:51 stderr?
Søren Gjesse 2011/10/21 15:17:03 Ditto.
/*
* Returns an output stream to the process stdin.
« no previous file with comments | « runtime/bin/input_stream.dart ('k') | runtime/bin/process_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698