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

Unified Diff: Source/core/dom/Node.h

Issue 307433003: Oilpan: Allocate all EventTarget derived types on the manged heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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
Index: Source/core/dom/Node.h
diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h
index 6f5adbde310fc0e013e567536b60cb0203efa1cb..53db45c88b0290523a5467837159d3e9f7d4056e 100644
--- a/Source/core/dom/Node.h
+++ b/Source/core/dom/Node.h
@@ -115,6 +115,7 @@ class Node : public TreeSharedWillBeRefCountedGarbageCollected<Node>, public Eve
friend class TreeScopeAdopter;
DEFINE_EVENT_TARGET_REFCOUNTING(TreeSharedWillBeRefCountedGarbageCollected<Node>);
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Node);
public:
enum NodeType {
ELEMENT_NODE = 1,
@@ -673,7 +674,7 @@ public:
bool isFinishedParsingChildren() const { return getFlag(IsFinishedParsingChildrenFlag); }
- virtual void trace(Visitor*);
+ virtual void trace(Visitor*) OVERRIDE;
private:
enum NodeFlags {

Powered by Google App Engine
This is Rietveld 408576698