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

Unified Diff: sdk/lib/io/stdio.dart

Issue 12313057: Remove old InputStream and OutputStream classes from dart:io. (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 | « sdk/lib/io/output_stream.dart ('k') | sdk/lib/io/string_stream.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/stdio.dart
diff --git a/sdk/lib/io/stdio.dart b/sdk/lib/io/stdio.dart
index d460edde2f642edf366142ceae7e568420cd9de1..eb7119c95836348e88cf9e51aa68536d88e9b92c 100644
--- a/sdk/lib/io/stdio.dart
+++ b/sdk/lib/io/stdio.dart
@@ -75,7 +75,7 @@ StdioType stdioType(object) {
class _StdIOUtils {
- external static OutputStream _getStdioOutputStream(int fd);
- external static InputStream _getStdioInputStream();
+ external static IOSink _getStdioOutputStream(int fd);
+ external static Stream<List<int>> _getStdioInputStream();
external static int _socketType(nativeSocket);
}
« no previous file with comments | « sdk/lib/io/output_stream.dart ('k') | sdk/lib/io/string_stream.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698