Index: runtime/bin/eventhandler_win.cc |
diff --git a/runtime/bin/eventhandler_win.cc b/runtime/bin/eventhandler_win.cc |
index b29f121894ec5afbb8b5444563b45f019d51ae3a..1fdbe204b72af65900b1ac2ed7fa0b0ef1f2540f 100644 |
--- a/runtime/bin/eventhandler_win.cc |
+++ b/runtime/bin/eventhandler_win.cc |
@@ -1213,9 +1213,9 @@ int64_t EventHandlerImplementation::GetTimeout() { |
} |
-void EventHandlerImplementation::SendData(intptr_t id, |
- Dart_Port dart_port, |
- int64_t data) { |
+void EventHandlerImplementation::Notify(intptr_t id, |
+ Dart_Port dart_port, |
+ int64_t data) { |
InterruptMessage* msg = new InterruptMessage; |
msg->id = id; |
msg->dart_port = dart_port; |
@@ -1299,7 +1299,7 @@ void EventHandlerImplementation::Start(EventHandler* handler) { |
void EventHandlerImplementation::Shutdown() { |
- SendData(kShutdownId, 0, 0); |
+ Notify(kShutdownId, 0, 0); |
} |
} // namespace bin |