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

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: 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 e41a2ce63e58d11cfe4b6f7ddf0bf3f1b4bbe629..5f3e50d11f0865152b21c24fd8f10e103083f786 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