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

Unified Diff: third_party/WebKit/Source/platform/graphics/filters/FilterEffect.h

Issue 2389703004: Rewrap comments to 80 columns in Source/platform/graphics/filters/. (Closed)
Patch Set: 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/platform/graphics/filters/FilterEffect.h
diff --git a/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.h b/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.h
index 00655ff7194b0de218a8e220ee6e2e393c59246e..39e64030befeeb47dafef2ed67509c683d6e980e 100644
--- a/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.h
+++ b/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.h
@@ -104,8 +104,8 @@ class PLATFORM_EXPORT FilterEffect
virtual bool affectsTransparentPixels() const { return false; }
- // Return false if the filter will only operate correctly on valid RGBA values, with
- // alpha in [0,255] and each color component in [0, alpha].
+ // Return false if the filter will only operate correctly on valid RGBA
+ // values, with alpha in [0,255] and each color component in [0, alpha].
virtual bool mayProduceInvalidPreMultipliedPixels() { return false; }
SkImageFilter* getImageFilter(ColorSpace,
@@ -144,14 +144,16 @@ class PLATFORM_EXPORT FilterEffect
Member<Filter> m_filter;
- // The following member variables are SVG specific and will move to LayoutSVGResourceFilterPrimitive.
+ // The following member variables are SVG specific and will move to
+ // LayoutSVGResourceFilterPrimitive.
// See bug https://bugs.webkit.org/show_bug.cgi?id=45614.
- // The subregion of a filter primitive according to the SVG Filter specification in local coordinates.
- // This is SVG specific and needs to move to LayoutSVGResourceFilterPrimitive.
+ // The subregion of a filter primitive according to the SVG Filter
+ // specification in local coordinates.
FloatRect m_filterPrimitiveSubregion;
- // Should the effect clip to its primitive region, or expand to use the combined region of its inputs.
+ // Whether the effect should clip to its primitive region, or expand to use
+ // the combined region of its inputs.
bool m_clipsToBounds;
bool m_originTainted;

Powered by Google App Engine
This is Rietveld 408576698