| Index: runtime/bin/socket_impl.dart
|
| diff --git a/runtime/bin/socket_impl.dart b/runtime/bin/socket_impl.dart
|
| index b262cee9d14e1df00f875efca48f051d0ebc9275..8594afaef0b5eda58f2d2ec2d32a902dc4cf9b7e 100644
|
| --- a/runtime/bin/socket_impl.dart
|
| +++ b/runtime/bin/socket_impl.dart
|
| @@ -475,7 +475,7 @@ class _Socket extends _SocketBase implements Socket {
|
| throw new StreamException(
|
| "Cannot get input stream when socket handlers are used");
|
| }
|
| - _inputStream = new SocketInputStream(this);
|
| + _inputStream = new _SocketInputStream(this);
|
| }
|
| return _inputStream;
|
| }
|
| @@ -486,7 +486,7 @@ class _Socket extends _SocketBase implements Socket {
|
| throw new StreamException(
|
| "Cannot get input stream when socket handlers are used");
|
| }
|
| - _outputStream = new SocketOutputStream(this);
|
| + _outputStream = new _SocketOutputStream(this);
|
| }
|
| return _outputStream;
|
| }
|
| @@ -574,8 +574,8 @@ class _Socket extends _SocketBase implements Socket {
|
| bool _pipe = false;
|
| Function _clientConnectHandler;
|
| Function _clientWriteHandler;
|
| - SocketInputStream _inputStream;
|
| - SocketOutputStream _outputStream;
|
| + _SocketInputStream _inputStream;
|
| + _SocketOutputStream _outputStream;
|
| String _remoteHost;
|
| int _remotePort;
|
| static SendPort _socketService;
|
|
|