Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(471)

Unified Diff: Source/core/dom/Node.h

Issue 423823004: Add support for SVG Clip paths in HTML (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed unwanted code from RenderLayerClipPathInfo.* and Renderlayer.cpp and Renamed filters to svg… Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
};

Powered by Google App Engine
This is Rietveld 408576698