Chromium Code Reviews| 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&); |