Chromium Code Reviews| Index: src/api.cc |
| diff --git a/src/api.cc b/src/api.cc |
| index cfc170ee8e1d3fedf1199916e7e81ea865c6dfb7..93322b26678becb81109d7aa4fa06e1f06538d10 100644 |
| --- a/src/api.cc |
| +++ b/src/api.cc |
| @@ -7104,6 +7104,11 @@ void Isolate::Exit() { |
| isolate->Exit(); |
| } |
|
Michael Starzinger
2015/10/01 16:34:38
nit: Two empty newlines between top-level declarat
julien.gilli
2015/10/01 19:18:11
Acknowledged.
julien.gilli
2015/10/01 19:18:11
For some reason, it seems tools/presubmit.py didn'
julien.gilli
2015/10/05 17:24:24
Done.
|
| +void Isolate::SetAbortOnUncaughtExceptionCallback( |
| + AbortOnUncaughtExceptionCallback callback) { |
| + i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this); |
| + isolate->SetAbortOnUncaughtExceptionCallback(callback); |
| +} |
|
Michael Starzinger
2015/10/01 16:34:38
nit: Two empty newlines between top-level declarat
julien.gilli
2015/10/01 19:18:11
Acknowledged.
julien.gilli
2015/10/05 17:24:24
Done.
|
| Isolate::DisallowJavascriptExecutionScope::DisallowJavascriptExecutionScope( |
| Isolate* isolate, |