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

Unified Diff: sdk/lib/_internal/lib/io_patch.dart

Issue 22901017: Always initialize the EventHandler in the standalone. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Simplify impl and don't call Stop (other isolates may still be running). Created 7 years, 4 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: sdk/lib/_internal/lib/io_patch.dart
diff --git a/sdk/lib/_internal/lib/io_patch.dart b/sdk/lib/_internal/lib/io_patch.dart
index 4216317a3381784cef11b8c45e92851893c9f9f3..80725b894e137570e04a7ebcf106b08232a90b98 100644
--- a/sdk/lib/_internal/lib/io_patch.dart
+++ b/sdk/lib/_internal/lib/io_patch.dart
@@ -33,13 +33,9 @@ patch class _Directory {
}
patch class _EventHandler {
- patch static void _start() {
- throw new UnsupportedError("EventHandler._start");
- }
-
- patch static _sendData(Object sender,
- ReceivePort receivePort,
- int data) {
+ patch static void _sendData(Object sender,
+ ReceivePort receivePort,
+ int data) {
throw new UnsupportedError("EventHandler._sendData");
}
}

Powered by Google App Engine
This is Rietveld 408576698