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

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

Issue 1630933004: Fix type-error in base64.dart (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Added test Created 4 years, 11 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 | « no previous file | tests/lib/convert/base64_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/convert/base64.dart
diff --git a/sdk/lib/convert/base64.dart b/sdk/lib/convert/base64.dart
index 66c1f0ce951e281e9e022ed2d61b6cbdac2a2e48..eb7519a2710175d9ace3aaaea344e44d9a498f8d 100644
--- a/sdk/lib/convert/base64.dart
+++ b/sdk/lib/convert/base64.dart
@@ -270,7 +270,7 @@ abstract class _Base64EncoderSink extends ByteConversionSinkBase {
class _AsciiBase64EncoderSink extends _Base64EncoderSink {
final _Base64Encoder _encoder = new _BufferCachingBase64Encoder();
- final ChunkedConversionSink<String> _sink;
+ final Sink<String> _sink;
_AsciiBase64EncoderSink(this._sink);
@@ -684,7 +684,7 @@ class _Base64Decoder {
class _Base64DecoderSink extends StringConversionSinkBase {
/** Output sink */
- final ChunkedConversionSink<List<int>> _sink;
+ final Sink<List<int>> _sink;
final _Base64Decoder _decoder = new _Base64Decoder();
_Base64DecoderSink(this._sink);
« no previous file with comments | « no previous file | tests/lib/convert/base64_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698