| Index: runtime/vm/dart_api_impl.cc
|
| diff --git a/runtime/vm/dart_api_impl.cc b/runtime/vm/dart_api_impl.cc
|
| index 5e9b9cea7e2fcbfcb3fa92411488c68a332fd9ce..92b381230c83faf7610a46cf02433976451bb633 100644
|
| --- a/runtime/vm/dart_api_impl.cc
|
| +++ b/runtime/vm/dart_api_impl.cc
|
| @@ -1134,6 +1134,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,
|
| @@ -1157,6 +1158,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,
|
|
|