Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1686)

Unified Diff: Source/platform/heap/Visitor.h

Issue 1179763005: Oilpan: Fix compile of GC_PROFILING build, and remove object graph dumper. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add EagerSweepHeap. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/heap/ThreadState.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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); }
« no previous file with comments | « Source/platform/heap/ThreadState.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698