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

Unified Diff: sdk/lib/convert/chunked_conversion.dart

Issue 2767943002: Revert "Fix some strong mode issues in the core libraries." (Closed)
Patch Set: Created 3 years, 9 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/convert/base64.dart ('k') | sdk/lib/convert/converter.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/convert/chunked_conversion.dart
diff --git a/sdk/lib/convert/chunked_conversion.dart b/sdk/lib/convert/chunked_conversion.dart
index ff1294fced06ca2405d97c72f03c4165b76a7b5e..710bef75c01129f76f197b0222bd08db13ac0c9e 100644
--- a/sdk/lib/convert/chunked_conversion.dart
+++ b/sdk/lib/convert/chunked_conversion.dart
@@ -6,6 +6,16 @@ part of dart.convert;
typedef void _ChunkedConversionCallback<T>(T accumulated);
+/// This class is deprecated. Extend [Converter] directly.
+@deprecated
+abstract class ChunkedConverter<S, T, S2, T2> extends Converter<S, T> {
+ const ChunkedConverter() : super();
+
+ dynamic bind(dynamic other) => super.bind(other);
+ dynamic startChunkedConversion(dynamic sink) =>
+ super.startChunkedConversion(sink);
+}
+
/**
* A [ChunkedConversionSink] is used to transmit data more efficiently between
* two converters during chunked conversions.
« no previous file with comments | « sdk/lib/convert/base64.dart ('k') | sdk/lib/convert/converter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698