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

Unified Diff: runtime/bin/eventhandler_win.cc

Issue 9323082: Fix Windows and Mac OS builds (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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
« no previous file with comments | « runtime/bin/eventhandler_macos.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/eventhandler_win.cc
diff --git a/runtime/bin/eventhandler_win.cc b/runtime/bin/eventhandler_win.cc
index c4085c52139e43db889eee8f2a3316f8fd405501..ea7fc1f6c760e2ef6a319ae6a2529eb837cdb01a 100644
--- a/runtime/bin/eventhandler_win.cc
+++ b/runtime/bin/eventhandler_win.cc
@@ -644,7 +644,7 @@ void EventHandlerImplementation::HandleInterrupt(InterruptMessage* msg) {
if ((msg->data & (1 << kInEvent)) != 0) {
if (handle->Available() > 0) {
int event_mask = (1 << kInEvent);
- DartUtils::PostInteger(port, event_mask);
+ DartUtils::PostInt32(port, event_mask);
} else if (!handle->HasPendingRead() &&
!handle->IsClosedRead()) {
handle->IssueRead();
« no previous file with comments | « runtime/bin/eventhandler_macos.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698