| 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;
|
| };
|
|
|
| }
|
|
|