Chromium Code Reviews| Index: runtime/vm/debugger_api_impl_test.cc |
| =================================================================== |
| --- runtime/vm/debugger_api_impl_test.cc (revision 31283) |
| +++ runtime/vm/debugger_api_impl_test.cc (working copy) |
| @@ -1350,7 +1350,10 @@ |
| static Dart_NativeFunction InterruptNativeResolver(Dart_Handle name, |
| - int arg_count) { |
| + int arg_count, |
| + bool* auto_setup_scope) { |
| + ASSERT(auto_setup_scope != NULL); |
| + *auto_setup_scope = false; |
| return &InterruptNativeFunction; |
| } |