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

Unified Diff: third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.cpp

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/FEColorMatrix.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.cpp b/third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.cpp
index 0becc3acaa20b7d4e956f9a67b10fcc573e61cfa..9605f74299d79083b3b7c8e1615158e89fb4ff8c 100644
--- a/third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.cpp
+++ b/third_party/WebKit/Source/platform/graphics/filters/FEColorMatrix.cpp
@@ -146,8 +146,8 @@ static sk_sp<SkColorFilter> createColorFilter(ColorMatrixType type,
}
bool FEColorMatrix::affectsTransparentPixels() const {
- // Because the input pixels are premultiplied, the only way clear pixels can be
- // painted is if the additive component for the alpha is not 0.
+ // Because the input pixels are premultiplied, the only way clear pixels can
+ // be painted is if the additive component for the alpha is not 0.
return m_type == FECOLORMATRIX_TYPE_MATRIX &&
m_values.size() >= kColorMatrixSize && m_values[19] > 0;
}

Powered by Google App Engine
This is Rietveld 408576698