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

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

Issue 2482353002: Revert of Tracking filter mutation via SVGElementProxy (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « third_party/WebKit/Source/core/dom/Element.cpp ('k') | third_party/WebKit/Source/core/dom/Node.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/Node.h
diff --git a/third_party/WebKit/Source/core/dom/Node.h b/third_party/WebKit/Source/core/dom/Node.h
index 4efecab2951bf3c39adcb6f58810df6e3388fd17..0dca87a2894a125f5fe2fc222840616a74ae2b81 100644
--- a/third_party/WebKit/Source/core/dom/Node.h
+++ b/third_party/WebKit/Source/core/dom/Node.h
@@ -77,8 +77,8 @@
class Text;
class TouchEvent;
-const int nodeStyleChangeShift = 18;
-const int nodeCustomElementShift = 20;
+const int nodeStyleChangeShift = 19;
+const int nodeCustomElementShift = 21;
enum StyleChangeType {
NoStyleChange = 0,
@@ -471,6 +471,16 @@
void setNeedsStyleInvalidation();
void updateDistribution();
+
+ bool svgFilterNeedsLayerUpdate() const {
+ return getFlag(SVGFilterNeedsLayerUpdateFlag);
+ }
+ void setSVGFilterNeedsLayerUpdate() {
+ setFlag(SVGFilterNeedsLayerUpdateFlag);
+ }
+ void clearSVGFilterNeedsLayerUpdate() {
+ clearFlag(SVGFilterNeedsLayerUpdateFlag);
+ }
void setIsLink(bool f);
@@ -813,29 +823,30 @@
IsFinishedParsingChildrenFlag = 1 << 12,
// Flags related to recalcStyle.
- HasCustomStyleCallbacksFlag = 1 << 13,
- ChildNeedsStyleInvalidationFlag = 1 << 14,
- NeedsStyleInvalidationFlag = 1 << 15,
- ChildNeedsDistributionRecalcFlag = 1 << 16,
- ChildNeedsStyleRecalcFlag = 1 << 17,
+ SVGFilterNeedsLayerUpdateFlag = 1 << 13,
+ HasCustomStyleCallbacksFlag = 1 << 14,
+ ChildNeedsStyleInvalidationFlag = 1 << 15,
+ NeedsStyleInvalidationFlag = 1 << 16,
+ ChildNeedsDistributionRecalcFlag = 1 << 17,
+ ChildNeedsStyleRecalcFlag = 1 << 18,
StyleChangeMask =
1 << nodeStyleChangeShift | 1 << (nodeStyleChangeShift + 1),
CustomElementStateMask = 0x3 << nodeCustomElementShift,
- HasNameOrIsEditingTextFlag = 1 << 22,
- HasEventTargetDataFlag = 1 << 23,
-
- V0CustomElementFlag = 1 << 24,
- V0CustomElementUpgradedFlag = 1 << 25,
-
- NeedsReattachLayoutTree = 1 << 26,
- ChildNeedsReattachLayoutTree = 1 << 27,
+ HasNameOrIsEditingTextFlag = 1 << 23,
+ HasEventTargetDataFlag = 1 << 24,
+
+ V0CustomElementFlag = 1 << 25,
+ V0CustomElementUpgradedFlag = 1 << 26,
+
+ NeedsReattachLayoutTree = 1 << 27,
+ ChildNeedsReattachLayoutTree = 1 << 28,
DefaultNodeFlags = IsFinishedParsingChildrenFlag | NeedsReattachStyleChange
};
- // 4 bits remaining.
+ // 3 bits remaining.
bool getFlag(NodeFlags mask) const { return m_nodeFlags & mask; }
void setFlag(bool f, NodeFlags mask) {
« no previous file with comments | « third_party/WebKit/Source/core/dom/Element.cpp ('k') | third_party/WebKit/Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698