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

Unified Diff: sky/engine/core/dom/NodeRareData.h

Issue 723253004: Remove tons of OILPAN. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 | « sky/engine/core/dom/NodeList.h ('k') | sky/engine/core/dom/NodeRareData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/dom/NodeRareData.h
diff --git a/sky/engine/core/dom/NodeRareData.h b/sky/engine/core/dom/NodeRareData.h
index 3f34fc28b6b0fd281c76c481ecb15ad4fdef39f7..725261c3280ecea48b60959f654b0bf022f12676 100644
--- a/sky/engine/core/dom/NodeRareData.h
+++ b/sky/engine/core/dom/NodeRareData.h
@@ -43,14 +43,6 @@ public:
return adoptPtr(new NodeMutationObserverData);
}
- void trace(Visitor* visitor)
- {
-#if ENABLE(OILPAN)
- visitor->trace(registry);
- visitor->trace(transientRegistry);
-#endif
- }
-
private:
NodeMutationObserverData() { }
};
@@ -76,11 +68,6 @@ public:
void setElementFlag(ElementFlags mask, bool value) { m_elementFlags = (m_elementFlags & ~mask) | (-(int32_t)value & mask); }
void clearElementFlag(ElementFlags mask) { m_elementFlags &= ~mask; }
- void trace(Visitor*);
-
- void traceAfterDispatch(Visitor*);
- void finalizeGarbageCollectedObject();
-
protected:
explicit NodeRareData(RenderObject* renderer)
: NodeRareDataBase(renderer)
« no previous file with comments | « sky/engine/core/dom/NodeList.h ('k') | sky/engine/core/dom/NodeRareData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698