Index: runtime/bin/eventhandler.cc |
diff --git a/runtime/bin/eventhandler.cc b/runtime/bin/eventhandler.cc |
index c25a2fac4e1b5d6fc221158e27283f8d54767d02..8de036eb8bf0acb18526cf6b6ebe847c450b67e2 100644 |
--- a/runtime/bin/eventhandler.cc |
+++ b/runtime/bin/eventhandler.cc |
@@ -74,6 +74,12 @@ void EventHandler::Stop() { |
} |
+EventHandlerImplementation* EventHandler::delegate() { |
+ if (event_handler == NULL) return NULL; |
+ return &event_handler->delegate_; |
+} |
+ |
+ |
/* |
* Send data to the EventHandler thread to register for a given instance |
* args[0] a ReceivePort args[1] with a notification event args[2]. |