| Index: runtime/bin/main.cc
|
| diff --git a/runtime/bin/main.cc b/runtime/bin/main.cc
|
| index a5c3563cafd32a180469959ac9113f47a91faa22..c88ba52510ca302101e8c37f1e9b91de2542a63d 100644
|
| --- a/runtime/bin/main.cc
|
| +++ b/runtime/bin/main.cc
|
| @@ -834,8 +834,8 @@ class DartScope {
|
| };
|
|
|
|
|
| -static const char* ServiceRequestHandler(
|
| - const char* name,
|
| +static const char* ServiceGetIOHandler(
|
| + const char* method,
|
| const char** param_keys,
|
| const char** param_values,
|
| intptr_t num_params,
|
| @@ -952,7 +952,7 @@ void main(int argc, char** argv) {
|
| }
|
|
|
| Dart_RegisterIsolateServiceRequestCallback(
|
| - "io", &ServiceRequestHandler, NULL);
|
| + "getIO", &ServiceGetIOHandler, NULL);
|
|
|
| // Call CreateIsolateAndSetup which creates an isolate and loads up
|
| // the specified application script.
|
|
|