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

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

Issue 319613004: Rename scheduleLayerUpdate now that it's only used for SVG filters. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rename all the things Created 6 years, 6 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
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/dom/Node.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Node.h
diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h
index e8124911044aa7d0ab540e315d376cb95429ceb1..5c2fbc2dd5d7c64fe76be89ad24f8285f1ea1ece 100644
--- a/Source/core/dom/Node.h
+++ b/Source/core/dom/Node.h
@@ -372,9 +372,9 @@ public:
void recalcDistribution();
- bool needsLayerUpdate() const { return getFlag(NeedsLayerUpdateFlag); }
- void setNeedsLayerUpdate() { setFlag(NeedsLayerUpdateFlag); }
- void clearNeedsLayerUpdate() { clearFlag(NeedsLayerUpdateFlag); }
+ bool svgFilterNeedsLayerUpdate() const { return getFlag(SVGFilterNeedsLayerUpdateFlag); }
+ void setSVGFilterNeedsLayerUpdate() { setFlag(SVGFilterNeedsLayerUpdateFlag); }
+ void clearSVGFilterNeedsLayerUpdate() { clearFlag(SVGFilterNeedsLayerUpdateFlag); }
void setIsLink(bool f);
@@ -703,7 +703,7 @@ private:
IsFinishedParsingChildrenFlag = 1 << 12,
// Flags related to recalcStyle.
- NeedsLayerUpdateFlag = 1 << 13,
+ SVGFilterNeedsLayerUpdateFlag = 1 << 13,
HasCustomStyleCallbacksFlag = 1 << 14,
ChildNeedsStyleInvalidationFlag = 1 << 15,
NeedsStyleInvalidationFlag = 1 << 16,
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698