 Chromium Code Reviews
 Chromium Code Reviews Issue 8318009:
  Update the streams interfaces  (Closed) 
  Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
    
  
    Issue 8318009:
  Update the streams interfaces  (Closed) 
  Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart| 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. |