Index: src/api.cc |
diff --git a/src/api.cc b/src/api.cc |
index 0c92835191641a94b9861d487535b03afe034616..0da6ab7378a4440178df3b8ece77c4db71353a3c 100644 |
--- a/src/api.cc |
+++ b/src/api.cc |
@@ -4262,15 +4262,6 @@ bool v8::V8::SetFunctionEntryHook(FunctionEntryHook entry_hook) { |
} |
-void v8::V8::SetJitCodeEventHandler( |
- JitCodeEventOptions options, JitCodeEventHandler event_handler) { |
- i::Isolate* isolate = i::Isolate::Current(); |
- // Ensure that logging is initialized for our isolate. |
- isolate->InitializeLoggingAndCounters(); |
- isolate->logger()->SetCodeEventHandler(options, event_handler); |
-} |
- |
- |
bool v8::V8::Dispose() { |
i::Isolate* isolate = i::Isolate::Current(); |
if (!ApiCheck(isolate != NULL && isolate->IsDefaultIsolate(), |