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

Unified Diff: third_party/WebKit/Source/core/paint/VideoPainter.cpp

Issue 2392443009: reflow comments in core/paint (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/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 {
« no previous file with comments | « third_party/WebKit/Source/core/paint/ThemePainterMac.mm ('k') | third_party/WebKit/Source/core/paint/ViewPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698