Index: vm/snapshot_test.cc |
=================================================================== |
--- vm/snapshot_test.cc (revision 1771) |
+++ vm/snapshot_test.cc (working copy) |
@@ -332,7 +332,7 @@ |
// Start an Isolate, load a script and create a full snapshot. |
Timer timer1(true, "Snapshot_test"); |
timer1.Start(); |
- Dart_CreateIsolate(NULL, NULL); |
+ Dart_CreateIsolate(NULL); |
{ |
Dart_EnterScope(); // Start a Dart API scope for invoking API functions. |
@@ -356,7 +356,7 @@ |
// from the script. |
Timer timer2(true, "Snapshot_test"); |
timer2.Start(); |
- Dart_CreateIsolate(buffer, NULL); |
+ Dart_CreateIsolate(buffer); |
{ |
Dart_EnterScope(); // Start a Dart API scope for invoking API functions. |
timer2.Stop(); |
@@ -392,7 +392,7 @@ |
// Start an Isolate, load a script and create a full snapshot. |
Timer timer1(true, "Snapshot_test"); |
timer1.Start(); |
- Dart_CreateIsolate(NULL, NULL); |
+ Dart_CreateIsolate(NULL); |
{ |
Dart_EnterScope(); // Start a Dart API scope for invoking API functions. |
Isolate* isolate = Isolate::Current(); |
@@ -425,7 +425,7 @@ |
// from the script. |
Timer timer2(true, "Snapshot_test"); |
timer2.Start(); |
- Dart_CreateIsolate(buffer, NULL); |
+ Dart_CreateIsolate(buffer); |
{ |
Dart_EnterScope(); // Start a Dart API scope for invoking API functions. |
timer2.Stop(); |