Chromium Code Reviews| Index: sdk/lib/io/secure_socket.dart |
| diff --git a/sdk/lib/io/secure_socket.dart b/sdk/lib/io/secure_socket.dart |
| index a46cd1ecd0878e3c0321a1ada750bdc3b66fcb0a..6261cf89fc27c6a5ee33475553bef1e59d0ec00c 100644 |
| --- a/sdk/lib/io/secure_socket.dart |
| +++ b/sdk/lib/io/secure_socket.dart |
| @@ -609,7 +609,9 @@ class _RawSecureSocket extends Stream<RawSocketEvent> |
| int get remotePort => _socket.remotePort; |
| - void set _owner(owner) { _socket._owner = owner; } |
| + void set _owner(owner) { |
| + (_socket as dynamic)._owner = owner; |
|
herhut
2014/06/24 11:24:31
How about an assignment to a local variable instea
Bill Hesse
2014/06/24 11:29:03
There are 3 other places in this file where we use
|
| + } |
| int available() { |
| return _status != CONNECTED ? 0 |