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

Unified Diff: runtime/vm/port_test.cc

Issue 1371193005: VM restart + shutdown fixes (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: fix ups Created 5 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
Index: runtime/vm/port_test.cc
diff --git a/runtime/vm/port_test.cc b/runtime/vm/port_test.cc
index 34272d150b7b884d2d42ccd9fa047a247d732ff7..165d19c13848c69935e66937b5b11ba3cfc84148 100644
--- a/runtime/vm/port_test.cc
+++ b/runtime/vm/port_test.cc
@@ -38,7 +38,7 @@ class PortTestMessageHandler : public MessageHandler {
notify_count++;
}
- bool HandleMessage(Message* message) { return true; }
+ MessageStatus HandleMessage(Message* message) { return kOK; }
int notify_count;
};

Powered by Google App Engine
This is Rietveld 408576698