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

Unified Diff: third_party/WebKit/Source/platform/graphics/filters/FEDropShadow.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/FEDropShadow.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/filters/FEDropShadow.cpp b/third_party/WebKit/Source/platform/graphics/filters/FEDropShadow.cpp
index 76d41459359788f21d65ca34d2615088c2c6c298..938fd18406ba0b756671ef57f36f06ad8cfe58f1 100644
--- a/third_party/WebKit/Source/platform/graphics/filters/FEDropShadow.cpp
+++ b/third_party/WebKit/Source/platform/graphics/filters/FEDropShadow.cpp
@@ -65,7 +65,8 @@ FloatRect FEDropShadow::mapEffect(const FloatRect& rect) const {
IntSize kernelSize =
FEGaussianBlur::calculateKernelSize(filter, FloatPoint(m_stdX, m_stdY));
- // We take the half kernel size and multiply it with three, because we run box blur three times.
+ // We take the half kernel size and multiply it by three, because we run box
+ // blur three times.
FloatRect result = unionRect(rect, offsetRect);
result.inflateX(3.0f * kernelSize.width() * 0.5f);
result.inflateY(3.0f * kernelSize.height() * 0.5f);

Powered by Google App Engine
This is Rietveld 408576698