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

Unified Diff: lib/src/io_html.dart

Issue 2353933002: Use configurable imports to avoid having two versions of everything. (Closed)
Patch Set: Remove more warnings. Created 4 years, 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/io_html.dart
diff --git a/lib/src/io_html.dart b/lib/src/io_html.dart
index 2896967db50e2e7e09c555bab0feb7424087c0fc..420815c38d426210da765299ee44aeaa2297a4ff 100644
--- a/lib/src/io_html.dart
+++ b/lib/src/io_html.dart
@@ -3,9 +3,9 @@
// BSD-style license that can be found in the LICENSE file.
import "dart:async" show Future, Stream;
-import "dart:convert" show Encoding, LATIN1, UTF8;
+import "dart:convert" show Encoding;
import "dart:html";
-import "dart:typed_data" show Uint8List, ByteBuffer;
+import "dart:typed_data" show ByteBuffer;
/// Reads the bytes of a URI as a stream of bytes.
Stream<List<int>> readAsStream(Uri uri) async* {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698