| Index: third_party/WebKit/Source/core/paint/VideoPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/VideoPainter.cpp b/third_party/WebKit/Source/core/paint/VideoPainter.cpp
|
| index 4952d6520b773123dd71fca068c1874ba5027c7c..02e011ab4a98e88fdded392cc690a4c21e7ed378 100644
|
| --- a/third_party/WebKit/Source/core/paint/VideoPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/VideoPainter.cpp
|
| @@ -39,7 +39,8 @@ void VideoPainter::paintReplaced(const PaintInfo& paintInfo,
|
| LayoutRect contentRect = m_layoutVideo.contentBoxRect();
|
| contentRect.moveBy(paintOffset);
|
|
|
| - // Video frames are only painted in software for printing or capturing node images via web APIs.
|
| + // Video frames are only painted in software for printing or capturing node
|
| + // images via web APIs.
|
| bool forceSoftwareVideoPaint =
|
| paintInfo.getGlobalPaintFlags() & GlobalPaintFlattenCompositingLayers;
|
|
|
| @@ -61,7 +62,8 @@ void VideoPainter::paintReplaced(const PaintInfo& paintInfo,
|
| paintInfo.phase, contentRect);
|
|
|
| if (displayingPoster || !forceSoftwareVideoPaint) {
|
| - // This will display the poster image, if one is present, and otherwise paint nothing.
|
| + // This will display the poster image, if one is present, and otherwise
|
| + // paint nothing.
|
| ImagePainter(m_layoutVideo)
|
| .paintIntoRect(context, replacedRect, contentRect);
|
| } else {
|
|
|