Index: sdk/lib/io/chunked_stream.dart |
diff --git a/sdk/lib/io/chunked_stream.dart b/sdk/lib/io/chunked_stream.dart |
index e9081756597ff1841d73c3b9c9ae8fed81c68c95..c74a057cb0570538f46abddb14509a684cf53e8f 100644 |
--- a/sdk/lib/io/chunked_stream.dart |
+++ b/sdk/lib/io/chunked_stream.dart |
@@ -2,6 +2,8 @@ |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
+part of dart.io; |
+ |
class _ChunkedInputStream implements ChunkedInputStream { |
_ChunkedInputStream(InputStream this._input, int this._chunkSize) |
: _bufferList = new _BufferList() { |