| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index d53d3dbf246d877d9428c833585e3309679ed34b..a250a824a7eb4b9c65779a62b436b5fa2d4d8aae 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -432,8 +432,8 @@ public:
|
|
|
| // FIXME: SVG filters should change to store the filter on the RenderStyle
|
| // instead of the RenderObject so we can get rid of this hack.
|
| - void scheduleSVGFilterLayerUpdateHack(Element&);
|
| - void unscheduleSVGFilterLayerUpdateHack(Element&);
|
| + void scheduleSVGEffectsLayerUpdateHack(Element&);
|
| + void unscheduleSVGEffectsLayerUpdateHack(Element&);
|
|
|
| void evaluateMediaQueryList();
|
|
|
| @@ -1051,7 +1051,7 @@ public:
|
|
|
| virtual void trace(Visitor*) OVERRIDE;
|
|
|
| - bool hasSVGFilterElementsRequiringLayerUpdate() const { return m_layerUpdateSVGFilterElements.size(); }
|
| + bool hasSVGEffectsElementsRequiringLayerUpdate() const { return m_layerUpdateSVGEffectsElements.size(); }
|
| void didRecalculateStyleForElement() { ++m_styleRecalcElementCounter; }
|
|
|
| protected:
|
| @@ -1383,7 +1383,7 @@ private:
|
| WillBeHeapHashSet<RefPtrWillBeMember<Element> > m_associatedFormControls;
|
|
|
| WillBeHeapHashSet<RawPtrWillBeMember<SVGUseElement> > m_useElementsNeedingUpdate;
|
| - WillBeHeapHashSet<RawPtrWillBeMember<Element> > m_layerUpdateSVGFilterElements;
|
| + WillBeHeapHashSet<RawPtrWillBeMember<Element> > m_layerUpdateSVGEffectsElements;
|
|
|
| bool m_hasViewportUnits;
|
|
|
|
|