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

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

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.h
diff --git a/third_party/WebKit/Source/core/style/FilterOperation.h b/third_party/WebKit/Source/core/style/FilterOperation.h
index f6322ea968b2174934c49a0c5f2b893bb4aab474..b333645229577336972d601df2c0e7f84c1c680f 100644
--- a/third_party/WebKit/Source/core/style/FilterOperation.h
+++ b/third_party/WebKit/Source/core/style/FilterOperation.h
@@ -99,7 +99,8 @@ class CORE_EXPORT FilterOperation
// True if the alpha channel of any pixel can change under this operation.
virtual bool affectsOpacity() const { return false; }
- // True if the the value of one pixel can affect the value of another pixel under this operation, such as blur.
+ // True if the the value of one pixel can affect the value of another pixel
+ // under this operation, such as blur.
virtual bool movesPixels() const { return false; }
// Maps "forward" to determine which pixels in a destination rect are
@@ -166,8 +167,8 @@ class CORE_EXPORT ReferenceFilterOperation : public FilterOperation {
DEFINE_FILTER_OPERATION_TYPE_CASTS(ReferenceFilterOperation, REFERENCE);
-// GRAYSCALE, SEPIA, SATURATE and HUE_ROTATE are variations on a basic color matrix effect.
-// For HUE_ROTATE, the angle of rotation is stored in m_amount.
+// GRAYSCALE, SEPIA, SATURATE and HUE_ROTATE are variations on a basic color
+// matrix effect. For HUE_ROTATE, the angle of rotation is stored in m_amount.
class CORE_EXPORT BasicColorMatrixFilterOperation : public FilterOperation {
public:
static BasicColorMatrixFilterOperation* create(double amount,
@@ -208,7 +209,8 @@ DEFINE_TYPE_CASTS(BasicColorMatrixFilterOperation,
isBasicColorMatrixFilterOperation(*op),
isBasicColorMatrixFilterOperation(op));
-// INVERT, BRIGHTNESS, CONTRAST and OPACITY are variations on a basic component transfer effect.
+// INVERT, BRIGHTNESS, CONTRAST and OPACITY are variations on a basic component
+// transfer effect.
class CORE_EXPORT BasicComponentTransferFilterOperation
: public FilterOperation {
public:
« no previous file with comments | « third_party/WebKit/Source/core/style/FillLayer.cpp ('k') | third_party/WebKit/Source/core/style/FilterOperation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698