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

Unified Diff: runtime/bin/socket_impl.dart

Issue 11336012: Remove public SocketInputStream and SocketOutputStream clases (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 | « runtime/bin/io_sources.gypi ('k') | runtime/bin/socket_stream.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « runtime/bin/io_sources.gypi ('k') | runtime/bin/socket_stream.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698