Chromium Code Reviews| Index: Source/core/svg/SVGClipPathElement.h |
| diff --git a/Source/core/svg/SVGClipPathElement.h b/Source/core/svg/SVGClipPathElement.h |
| index 71f2f19a8458c9a5af408b4872fe45c35dd078ac..6fb34402f47895f0857a19c43e02325d54472c93 100644 |
| --- a/Source/core/svg/SVGClipPathElement.h |
| +++ b/Source/core/svg/SVGClipPathElement.h |
| @@ -38,6 +38,9 @@ public: |
| virtual bool supportsFocus() const OVERRIDE { return false; } |
| + void addClient(Node*); |
| + void removeClient(Node*); |
| + |
| private: |
| explicit SVGClipPathElement(Document&); |
| @@ -51,6 +54,8 @@ private: |
| virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE; |
| RefPtr<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType> > m_clipPathUnits; |
| + |
| + WillBeHeapHashSet<RefPtrWillBeMember<Node> > m_clientsToAdd; |
|
pdr.
2014/08/04 17:06:32
You will need to add the trace(Visitor*) function
f(malita)
2014/08/05 14:13:08
Since this class hasn't been converted yet, we cou
|
| }; |
| } |