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

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

Issue 354593002: Add _owner setter to _RawSecureSocket. (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 680acb616bb6d908e9f3d4c3a62352fc1d966f3d..a46cd1ecd0878e3c0321a1ada750bdc3b66fcb0a 100644
--- a/sdk/lib/io/secure_socket.dart
+++ b/sdk/lib/io/secure_socket.dart
@@ -609,6 +609,8 @@ class _RawSecureSocket extends Stream<RawSocketEvent>
int get remotePort => _socket.remotePort;
+ void set _owner(owner) { _socket._owner = owner; }
+
int available() {
return _status != CONNECTED ? 0
: _secureFilter.buffers[READ_PLAINTEXT].length;
« 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