| Index: src/isolate.h
|
| diff --git a/src/isolate.h b/src/isolate.h
|
| index 3801901307f4b16117ff7388ecb14aa06f8e7f53..62665f98ab2cab13ab8f6ce46426cc6fdb55fe64 100644
|
| --- a/src/isolate.h
|
| +++ b/src/isolate.h
|
| @@ -556,16 +556,6 @@ class Isolate {
|
| // If one does not yet exist, return null.
|
| PerIsolateThreadData* FindPerThreadDataForThread(ThreadId thread_id);
|
|
|
| -#ifdef ENABLE_DEBUGGER_SUPPORT
|
| - // Get the debugger from the default isolate. Preinitializes the
|
| - // default isolate if needed.
|
| - static Debugger* GetDefaultIsolateDebugger();
|
| -#endif
|
| -
|
| - // Get the stack guard from the default isolate. Preinitializes the
|
| - // default isolate if needed.
|
| - static StackGuard* GetDefaultIsolateStackGuard();
|
| -
|
| // Returns the key used to store the pointer to the current isolate.
|
| // Used internally for V8 threads that do not execute JavaScript but still
|
| // are part of the domain of an isolate (like the context switcher).
|
| @@ -1124,11 +1114,6 @@ class Isolate {
|
| return sweeper_thread_;
|
| }
|
|
|
| - // PreInits and returns a default isolate. Needed when a new thread tries
|
| - // to create a Locker for the first time (the lock itself is in the isolate).
|
| - // TODO(svenpanne) This method is on death row...
|
| - static v8::Isolate* GetDefaultIsolateForLocking();
|
| -
|
| int id() const { return static_cast<int>(id_); }
|
|
|
| HStatistics* GetHStatistics();
|
|
|