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

Unified Diff: sdk/lib/io/secure_socket.dart

Issue 349403003: Fix type error in r37647 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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: 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
« 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