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

Unified Diff: runtime/bin/socket_impl.dart

Issue 9289042: Minor changes to the dart:io library files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add missing files. Created 8 years, 11 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/process.dart ('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 bf9ccf4cce069953fa75ded49a339cfe514a11bd..8017b547b40ca56222474ea2cd5a9030a2ff0825 100644
--- a/runtime/bin/socket_impl.dart
+++ b/runtime/bin/socket_impl.dart
@@ -38,7 +38,7 @@ class _SocketBase {
_handlerMask = 0;
_canActivateHandlers = true;
_id = -1;
- EventHandler._start();
+ _EventHandler._start();
}
// Multiplexes socket events to the socket handlers.
@@ -163,7 +163,7 @@ class _SocketBase {
_handler = new ReceivePort();
_handler.receive((var message, ignored) { _multiplex(message); });
}
- EventHandler._sendData(_id, _handler, data);
+ _EventHandler._sendData(_id, _handler, data);
}
abstract bool _isListenSocket();
« no previous file with comments | « runtime/bin/process.dart ('k') | runtime/bin/socket_stream.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698