| Index: Source/platform/heap/Visitor.h
|
| diff --git a/Source/platform/heap/Visitor.h b/Source/platform/heap/Visitor.h
|
| index f3fd4d3842073a986cee1a0bf27af1d82a789a45..60cca5cd57156ff459003a7945c3c9fef89c6f21 100644
|
| --- a/Source/platform/heap/Visitor.h
|
| +++ b/Source/platform/heap/Visitor.h
|
| @@ -394,14 +394,6 @@ public:
|
|
|
| virtual bool ensureMarked(const void*) = 0;
|
|
|
| -#if ENABLE(GC_PROFILING)
|
| - void setHostInfo(void* object, const String& name)
|
| - {
|
| - m_hostObject = object;
|
| - m_hostName = name;
|
| - }
|
| -#endif
|
| -
|
| inline MarkingMode markingMode() const { return m_markingMode; }
|
|
|
| protected:
|
| @@ -410,12 +402,6 @@ protected:
|
| { }
|
|
|
| virtual void registerWeakCellWithCallback(void**, WeakCallback) = 0;
|
| -#if ENABLE(GC_PROFILING)
|
| - virtual void recordObjectGraphEdge(const void*) = 0;
|
| -
|
| - void* m_hostObject;
|
| - String m_hostName;
|
| -#endif
|
|
|
| private:
|
| static Visitor* fromHelper(VisitorHelper<Visitor>* helper) { return static_cast<Visitor*>(helper); }
|
|
|