| Index: sdk/lib/io/http_impl.dart
|
| diff --git a/sdk/lib/io/http_impl.dart b/sdk/lib/io/http_impl.dart
|
| index 1fc9a17be11e6f63deb740eb9d559b4b9cc6cb22..f61c555d5a440bc0899bc21cd510a8ec4d2f2d32 100644
|
| --- a/sdk/lib/io/http_impl.dart
|
| +++ b/sdk/lib/io/http_impl.dart
|
| @@ -636,8 +636,8 @@ class _HttpOutboundConsumer implements StreamConsumer {
|
|
|
|
|
| class _BufferTransformer extends StreamEventTransformer<List<int>, List<int>> {
|
| - const int MIN_CHUNK_SIZE = 4 * 1024;
|
| - const int MAX_BUFFER_SIZE = 16 * 1024;
|
| + static const int MIN_CHUNK_SIZE = 4 * 1024;
|
| + static const int MAX_BUFFER_SIZE = 16 * 1024;
|
|
|
| final _BufferList _buffer = new _BufferList();
|
|
|
|
|