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

Unified Diff: bin/input_stream.dart

Issue 8949043: - Fix outdated use of factory clause. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 9 years 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 | « bin/file.dart ('k') | bin/platform.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/input_stream.dart
===================================================================
--- bin/input_stream.dart (revision 2706)
+++ bin/input_stream.dart (working copy)
@@ -96,7 +96,7 @@
* string data. This data can be read either as string chunks or as
* lines separated by line termination character sequences.
*/
-interface StringInputStream factory _StringInputStream {
+interface StringInputStream default _StringInputStream {
/**
* Decodes a binary input stream into characters using the specified
* encoding.
@@ -160,7 +160,7 @@
* A chunked input stream wraps a basic input stream and supplies
* binary data in configurable chunk sizes.
*/
-interface ChunkedInputStream factory _ChunkedInputStream {
+interface ChunkedInputStream default _ChunkedInputStream {
/**
* Adds buffering to an input stream and provide the ability to read
* the data in known size chunks.
« no previous file with comments | « bin/file.dart ('k') | bin/platform.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698