| Index: runtime/vm/dart_api_impl.cc
|
| diff --git a/runtime/vm/dart_api_impl.cc b/runtime/vm/dart_api_impl.cc
|
| index 796aaca89d032a40788d4cbc791d7e3b23635dca..b9cb64ececae9384227bb8329c398b4661dce706 100644
|
| --- a/runtime/vm/dart_api_impl.cc
|
| +++ b/runtime/vm/dart_api_impl.cc
|
| @@ -1119,6 +1119,7 @@ DART_EXPORT const char* Dart_VersionString() {
|
| DART_EXPORT char* Dart_Initialize(
|
| const uint8_t* vm_isolate_snapshot,
|
| const uint8_t* instructions_snapshot,
|
| + const uint8_t* data_snapshot,
|
| Dart_IsolateCreateCallback create,
|
| Dart_IsolateInterruptCallback interrupt,
|
| Dart_IsolateUnhandledExceptionCallback unhandled,
|
| @@ -1142,6 +1143,7 @@ DART_EXPORT char* Dart_Initialize(
|
| }
|
| const char* err_msg = Dart::InitOnce(vm_isolate_snapshot,
|
| instructions_snapshot,
|
| + data_snapshot,
|
| create, shutdown,
|
| file_open, file_read, file_write,
|
| file_close, entropy_source,
|
|
|