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

Unified Diff: Source/core/html/LabelableElement.h

Issue 258143002: Oilpan: move DOM string collection objects to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 8 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/html/LabelableElement.h
diff --git a/Source/core/html/LabelableElement.h b/Source/core/html/LabelableElement.h
index 18f44085a74a637fb81ad0d8de4a4c99072290c2..922de911bf7ccebd1465126e5d1d228869c38622 100644
--- a/Source/core/html/LabelableElement.h
+++ b/Source/core/html/LabelableElement.h
@@ -43,6 +43,8 @@ public:
PassRefPtr<NodeList> labels();
virtual bool supportLabels() const { return false; }
+ virtual void trace(Visitor* visitor) OVERRIDE { HTMLElement::trace(visitor); }
Mads Ager (chromium) 2014/04/29 09:05:14 You don't need this one I think. The explicit call
haraken 2014/04/29 09:22:56 We'll need the trace method anyway in the near fut
sof 2014/04/29 09:29:34 (The plugin wanting such chaining was the direct r
+
protected:
LabelableElement(const QualifiedName& tagName, Document&);

Powered by Google App Engine
This is Rietveld 408576698