Chromium Code Reviews| Index: src/api.cc |
| diff --git a/src/api.cc b/src/api.cc |
| index 0d88047aa212f4d0abcba489cae3247774e6e397..a1ced657f2d375dd1fa522d45c8639f3a97c2560 100644 |
| --- a/src/api.cc |
| +++ b/src/api.cc |
| @@ -4221,6 +4221,11 @@ void v8::V8::SetReturnAddressLocationResolver( |
| } |
| +void v8::V8::SetFunctionEntryHook(uintptr_t entry_hook) { |
| + i::V8::SetFunctionEntryHook(entry_hook); |
| +} |
| + |
| + |
| bool v8::V8::Dispose() { |
| i::Isolate* isolate = i::Isolate::Current(); |
| if (!ApiCheck(isolate != NULL && isolate->IsDefaultIsolate(), |