Chromium Code Reviews| Index: Source/core/dom/Node.h |
| diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h |
| index c73d7bf8443d469dd740a80da94765c9c5b94bc7..4a2508be4b556ec43c3c2b60bb6067b2ac0debff 100644 |
| --- a/Source/core/dom/Node.h |
| +++ b/Source/core/dom/Node.h |
| @@ -381,9 +381,9 @@ public: |
| void recalcDistribution(); |
| - bool svgFilterNeedsLayerUpdate() const { return getFlag(SVGFilterNeedsLayerUpdateFlag); } |
| - void setSVGFilterNeedsLayerUpdate() { setFlag(SVGFilterNeedsLayerUpdateFlag); } |
| - void clearSVGFilterNeedsLayerUpdate() { clearFlag(SVGFilterNeedsLayerUpdateFlag); } |
| + bool svgEffectsNeedsLayerUpdate() const { return getFlag(SVGEffectsNeedsLayerUpdateFlag); } |
| + void setSVGEffectsNeedsLayerUpdate() { setFlag(SVGEffectsNeedsLayerUpdateFlag); } |
| + void clearSVGEffectsNeedsLayerUpdate() { clearFlag(SVGEffectsNeedsLayerUpdateFlag); } |
| void setIsLink(bool f); |
| @@ -707,17 +707,15 @@ private: |
| IsFinishedParsingChildrenFlag = 1 << 12, |
| // Flags related to recalcStyle. |
| - SVGFilterNeedsLayerUpdateFlag = 1 << 13, |
| + SVGEffectsNeedsLayerUpdateFlag = 1 << 13, |
|
f(malita)
2014/08/05 14:13:07
"SVGEffectsNeedLayerUpdateFlag" (subj-verb agreeme
Shanmuga Pandi
2014/08/06 14:51:34
Done.
|
| HasCustomStyleCallbacksFlag = 1 << 14, |
| ChildNeedsStyleInvalidationFlag = 1 << 15, |
| NeedsStyleInvalidationFlag = 1 << 16, |
| ChildNeedsDistributionRecalcFlag = 1 << 17, |
| ChildNeedsStyleRecalcFlag = 1 << 18, |
| StyleChangeMask = 1 << nodeStyleChangeShift | 1 << (nodeStyleChangeShift + 1), |
| - |
| CustomElementFlag = 1 << 21, |
| CustomElementUpgradedFlag = 1 << 22, |
| - |
| HasNameOrIsEditingTextFlag = 1 << 23, |
| HasWeakReferencesFlag = 1 << 24, |
| V8CollectableDuringMinorGCFlag = 1 << 25, |
| @@ -727,7 +725,6 @@ private: |
| // HTML dir=auto. |
| SelfOrAncestorHasDirAutoFlag = 1 << 29, |
| - |
| DefaultNodeFlags = IsFinishedParsingChildrenFlag | ChildNeedsStyleRecalcFlag | NeedsReattachStyleChange |
| }; |