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

Unified Diff: runtime/vm/custom_isolate_test.cc

Issue 8724008: Fix the linux build. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years, 1 month 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/vm/custom_isolate_test.cc
===================================================================
--- runtime/vm/custom_isolate_test.cc (revision 1906)
+++ runtime/vm/custom_isolate_test.cc (working copy)
@@ -278,6 +278,7 @@
OS::Print("-- Adding MessageEvent to queue --\n");
event_queue->Add(
new MessageEvent(dest_isolate, dest_port, reply_port, message));
+ return true;
}
@@ -338,7 +339,6 @@
static void CustomIsolateImpl_start(Dart_NativeArguments args) {
OS::Print("-- Enter: CustomIsolateImpl_start --\n");
- Dart_Handle result;
// We would probably want to pass in the this pointer too, so we
// could associate the CustomIsolateImpl instance with the
@@ -381,7 +381,7 @@
event_queue = new EventQueue();
current_event = NULL;
- Dart_Isolate main_isolate = Dart_CreateIsolate(NULL, NULL);
+ Dart_CreateIsolate(NULL, NULL);
Dart_SetMessageCallbacks(&PostMessage, &ClosePort);
Dart_EnterScope();
Dart_Handle result;
« 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