Chromium Code Reviews| Index: third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.cpp |
| diff --git a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.cpp b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.cpp |
| index f5d68b56536d362eee5020922e37c10c4ab00a66..ed40951e2228a77aacb4b2e264c93c87561c0fc8 100644 |
| --- a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.cpp |
| +++ b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.cpp |
| @@ -303,8 +303,8 @@ SkImageFilter* CanvasRenderingContext2DState::getFilter( |
| *m_filterValue); |
| resolverState.loadPendingResources(); |
| - // We can't reuse m_fillPaint and m_strokePaint for the filter, since these incorporate |
| - // the global alpha, which isn't applicable here. |
| + // We can't reuse m_fillPaint and m_strokePaint for the filter, since these |
| + // incorporate the global alpha, which isn't applicable here. |
| SkPaint fillPaintForFilter; |
| m_fillStyle->applyToPaint(fillPaintForFilter); |
| fillPaintForFilter.setColor(m_fillStyle->paintColor()); |
| @@ -520,7 +520,8 @@ const SkPaint* CanvasRenderingContext2DState::getPaint( |
| break; |
| default: |
| ASSERT_NOT_REACHED(); |
| - // no break on purpose: paint needs to be assigned to avoid compiler warning about uninitialized variable |
| + // no break on purpose: paint needs to be assigned to avoid compiler warning |
| + // about uninitialized variable |
|
Justin Novosad
2016/10/03 18:13:11
period
|
| case FillPaintType: |
| updateFillStyle(); |
| paint = &m_fillPaint; |