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

Unified Diff: runtime/bin/main.cc

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: runtime/bin/main.cc
diff --git a/runtime/bin/main.cc b/runtime/bin/main.cc
index 57c51686767da10cbc9e1982eea74ffac58bf5ba..f2c78db61a11a4d21ac6a17c4ccb8636a92813a3 100644
--- a/runtime/bin/main.cc
+++ b/runtime/bin/main.cc
@@ -741,6 +741,10 @@ int main(int argc, char** argv) {
}
}
+ // Start eventhandler now, as it might need the eventhandler to fully
Søren Gjesse 2013/08/21 13:52:05 Maybe just // Start event handler.
Anders Johnsen 2013/08/22 11:31:05 Done.
+ // initialize.
+ EventHandler::Start();
+
// Start the VM service isolate, if necessary.
if (start_vm_service) {
ASSERT(vm_service_server_port >= 0);

Powered by Google App Engine
This is Rietveld 408576698