| Index: src/isolate.h
|
| diff --git a/src/isolate.h b/src/isolate.h
|
| index ab32987780a230f01c9b9ac7106c8bf34550e2ef..84c3fb6ff426e2fcf300adb4153d9e8e6f096401 100644
|
| --- a/src/isolate.h
|
| +++ b/src/isolate.h
|
| @@ -51,6 +51,7 @@ namespace v8 {
|
| namespace internal {
|
|
|
| class Bootstrapper;
|
| +class CallbackTable;
|
| class CodeGenerator;
|
| class CodeRange;
|
| struct CodeStubInterfaceDescriptor;
|
| @@ -1102,6 +1103,13 @@ class Isolate {
|
| return sweeper_thread_;
|
| }
|
|
|
| + CallbackTable* callback_table() {
|
| + return callback_table_;
|
| + }
|
| + void set_callback_table(CallbackTable* callback_table) {
|
| + callback_table_ = callback_table;
|
| + }
|
| +
|
| HStatistics* GetHStatistics();
|
| HTracer* GetHTracer();
|
|
|
| @@ -1339,6 +1347,7 @@ class Isolate {
|
| OptimizingCompilerThread optimizing_compiler_thread_;
|
| MarkingThread** marking_thread_;
|
| SweeperThread** sweeper_thread_;
|
| + CallbackTable* callback_table_;
|
|
|
| friend class ExecutionAccess;
|
| friend class HandleScopeImplementer;
|
|
|