| Index: src/api.cc
|
| ===================================================================
|
| --- src/api.cc (revision 13419)
|
| +++ src/api.cc (working copy)
|
| @@ -4439,12 +4439,15 @@
|
| }
|
|
|
|
|
| -void v8::V8::SetJitCodeEventHandler(
|
| - JitCodeEventOptions options, JitCodeEventHandler event_handler) {
|
| +void v8::V8::SetJitCodeEventHandler(JitCodeEventOptions options,
|
| + JitCodeEventHandler event_handler,
|
| + bool support_moved_code) {
|
| i::Isolate* isolate = i::Isolate::Current();
|
| // Ensure that logging is initialized for our isolate.
|
| isolate->InitializeLoggingAndCounters();
|
| - isolate->logger()->SetCodeEventHandler(options, event_handler);
|
| + isolate->logger()->SetCodeEventHandler(options,
|
| + event_handler,
|
| + support_moved_code);
|
| }
|
|
|
|
|
|
|