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

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

Issue 60513011: Types for top-level constants in convert and io (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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/utf.dart ('k') | sdk/lib/io/string_transformer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/data_transformer.dart
diff --git a/sdk/lib/io/data_transformer.dart b/sdk/lib/io/data_transformer.dart
index fb3fbe49f9664746591ef4060968d08152838a44..79df03cc140dfac3b857a07f297157d3dd0f219d 100644
--- a/sdk/lib/io/data_transformer.dart
+++ b/sdk/lib/io/data_transformer.dart
@@ -8,7 +8,7 @@ part of dart.io;
/**
* An instance of the default implementation of the [ZLibCodec].
*/
-const ZLIB = const ZLibCodec();
+const ZLibCodec ZLIB = const ZLibCodec();
/**
@@ -45,7 +45,7 @@ class ZLibCodec extends Codec<List<int>, List<int>> {
/**
* An instance of the default implementation of the [GZipCodec].
*/
-const GZIP = const GZipCodec();
+const GZipCodec GZIP = const GZipCodec();
/**
« no previous file with comments | « sdk/lib/convert/utf.dart ('k') | sdk/lib/io/string_transformer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698