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

Unified Diff: runtime/bin/dbg_connection_android.cc

Issue 11099071: Build fix for android (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/dbg_connection_android.cc
diff --git a/runtime/bin/dbg_connection_android.cc b/runtime/bin/dbg_connection_android.cc
index d5a8f1d48326e8550a47c0cf73ee6119261fa94f..7fe7e94e0c5cf5f660e0f3d59d6539f4d71fdd58 100644
--- a/runtime/bin/dbg_connection_android.cc
+++ b/runtime/bin/dbg_connection_android.cc
@@ -28,11 +28,11 @@ void DebuggerConnectionImpl::HandleEvent(struct epoll_event* event) {
DebuggerConnectionHandler::AcceptDbgConnection(fd);
// TODO(hausner): add the debugger wire socket fd to the event poll queue
// once we poll the debugger connection.
- } else if (event->data.fd == DebuggerConnectionHandler::debugger_fd_) {
- printf("unexpected: receiving debugger connection event.\n");
+ } else if (event->data.fd == wakeup_fds_[0]) {
+ // Sync message. Not yet implemented.
UNIMPLEMENTED();
} else {
- // Sync message. Not yet implemented.
+ printf("unexpected: receiving debugger connection event.\n");
UNIMPLEMENTED();
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698