| 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:
 | 
| 
 |