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

Unified Diff: runtime/bin/io_service_no_ssl.cc

Issue 2651633002: VM: [Kernel] Fix bootstraping when Kernel isolate is used. (Closed)
Patch Set: Landing issue Created 3 years, 11 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/io_service.cc ('k') | runtime/bin/loader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/io_service_no_ssl.cc
diff --git a/runtime/bin/io_service_no_ssl.cc b/runtime/bin/io_service_no_ssl.cc
index 189eb0369fe4693a74cecc49e45995efef2d5946..af9c01fd1f3b5cc7502cf2934ddfb2246d5077ca 100644
--- a/runtime/bin/io_service_no_ssl.cc
+++ b/runtime/bin/io_service_no_ssl.cc
@@ -26,7 +26,9 @@ namespace bin {
response = type::method##Request(data); \
break;
-void IOServiceCallback(Dart_Port dest_port_id, Dart_CObject* message) {
+void IOServiceCallback(Dart_Port dest_port_id,
+ Dart_CObject* message,
+ void* peer) {
Dart_Port reply_port_id = ILLEGAL_PORT;
CObject* response = CObject::IllegalArgumentError();
CObjectArray request(message);
@@ -54,7 +56,7 @@ void IOServiceCallback(Dart_Port dest_port_id, Dart_CObject* message) {
Dart_Port IOService::GetServicePort() {
- return Dart_NewNativePort("IOService", IOServiceCallback, true);
+ return Dart_NewNativePort("IOService", IOServiceCallback, true, NULL);
}
« no previous file with comments | « runtime/bin/io_service.cc ('k') | runtime/bin/loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698