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

Unified Diff: sdk/lib/io/eventhandler.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/io/eventhandler.dart
diff --git a/sdk/lib/io/eventhandler.dart b/sdk/lib/io/eventhandler.dart
index 003c3ed23b9e1811f1576fb9c6afe05e42c56582..376b799cade6fa47cd58e255ff11064e8efff72b 100644
--- a/sdk/lib/io/eventhandler.dart
+++ b/sdk/lib/io/eventhandler.dart
@@ -5,6 +5,7 @@
part of dart.io;
class _EventHandler {
- external static void _start();
- external static _sendData(Object sender, ReceivePort receivePort, int data);
+ external static void _sendData(Object sender,
+ ReceivePort receivePort,
+ int data);
}

Powered by Google App Engine
This is Rietveld 408576698