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

Unified Diff: tool/input_sdk/lib/convert/base64.dart

Issue 1978963002: Upgrade to the latest dart:convert. (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 7 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 | « tool/input_sdk/lib/convert/ascii.dart ('k') | tool/input_sdk/lib/convert/chunked_conversion.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/lib/convert/base64.dart
diff --git a/tool/input_sdk/lib/convert/base64.dart b/tool/input_sdk/lib/convert/base64.dart
index f3d7019af55b81f8bead51d2b55382aa34134228..3fe1357fb923058b5a948d7dbcff48819ba101a5 100644
--- a/tool/input_sdk/lib/convert/base64.dart
+++ b/tool/input_sdk/lib/convert/base64.dart
@@ -70,8 +70,7 @@ class Base64Codec extends Codec<List<int>, String> {
*
* The results are ASCII strings using a restricted alphabet.
*/
-class Base64Encoder extends
- ChunkedConverter<List<int>, String, List<int>, String> {
+class Base64Encoder extends Converter<List<int>, String> {
final bool _urlSafe;
const Base64Encoder() : _urlSafe = false;
@@ -341,8 +340,7 @@ class _Utf8Base64EncoderSink extends _Base64EncoderSink {
*
* The encoding is required to be properly padded.
*/
-class Base64Decoder extends
- ChunkedConverter<String, List<int>, String, List<int>> {
+class Base64Decoder extends Converter<String, List<int>> {
const Base64Decoder();
« no previous file with comments | « tool/input_sdk/lib/convert/ascii.dart ('k') | tool/input_sdk/lib/convert/chunked_conversion.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698