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

Unified Diff: lib/io/socket_stream_impl.dart

Issue 11337019: Use patching for dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments 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
Index: lib/io/socket_stream_impl.dart
diff --git a/runtime/bin/socket_stream_impl.dart b/lib/io/socket_stream_impl.dart
similarity index 99%
rename from runtime/bin/socket_stream_impl.dart
rename to lib/io/socket_stream_impl.dart
index f3072be2a0c0507cac4b83310b64d89e8e78bf44..e56334c5c94732045a734f20ab211a9aafe2a6da 100644
--- a/runtime/bin/socket_stream_impl.dart
+++ b/lib/io/socket_stream_impl.dart
@@ -77,7 +77,7 @@ class _SocketInputStream implements InputStream {
}
}
- void _onSocketError(e) {
+ bool _onSocketError(e) {
close();
if (_onError != null) {
_onError(e);

Powered by Google App Engine
This is Rietveld 408576698