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

Unified Diff: third_party/WebKit/Source/core/style/FilterOperation.cpp

Issue 2392143002: reflow comments in core/style (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/core/style/FilterOperation.cpp
diff --git a/third_party/WebKit/Source/core/style/FilterOperation.cpp b/third_party/WebKit/Source/core/style/FilterOperation.cpp
index 99dceee6cb45fd9d4a0b7d51ff1b6b707004e028..5490b437d763412b30ee5483def01df223aa3e8e 100644
--- a/third_party/WebKit/Source/core/style/FilterOperation.cpp
+++ b/third_party/WebKit/Source/core/style/FilterOperation.cpp
@@ -37,7 +37,8 @@ static inline FloatSize outsetSizeForBlur(float stdDeviation) {
IntSize kernelSize = FEGaussianBlur::calculateUnscaledKernelSize(
FloatPoint(stdDeviation, stdDeviation));
FloatSize outset;
- // 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 with three, because we run box
+ // blur three times.
outset.setWidth(3.0f * kernelSize.width() * 0.5f);
outset.setHeight(3.0f * kernelSize.height() * 0.5f);
return outset;
« no previous file with comments | « third_party/WebKit/Source/core/style/FilterOperation.h ('k') | third_party/WebKit/Source/core/style/GridLength.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698