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

Unified Diff: third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h

Issue 2390773004: reflow comments in core/svg/ (Closed)
Patch Set: comments (heh!) Created 4 years, 2 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: third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h
diff --git a/third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h b/third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h
index 8f603d5884858d6598a48901d904f2bf6487b6f4..b1c8dc8bd90e1bddba9c36479721d48ed5f0bba9 100644
--- a/third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h
+++ b/third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h
@@ -37,8 +37,9 @@ class FloatRect;
class LayoutObject;
class SVGFilterElement;
-// A map from LayoutObject -> FilterEffect and FilterEffect -> dependent (downstream) FilterEffects ("reverse DAG").
-// Used during invalidations from changes to the primitives (graph nodes).
+// A map from LayoutObject -> FilterEffect and FilterEffect -> dependent
+// (downstream) FilterEffects ("reverse DAG"). Used during invalidations from
+// changes to the primitives (graph nodes).
class SVGFilterGraphNodeMap final
: public GarbageCollected<SVGFilterGraphNodeMap> {
public:
@@ -55,7 +56,8 @@ class SVGFilterGraphNodeMap final
return m_effectReferences.find(effect)->value;
}
- // Required to change the attributes of a filter during an svgAttributeChanged.
+ // Required to change the attributes of a filter during an
+ // svgAttributeChanged.
inline FilterEffect* effectByRenderer(LayoutObject* object) {
return m_effectRenderer.get(object);
}

Powered by Google App Engine
This is Rietveld 408576698