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

Unified Diff: third_party/WebKit/Source/core/paint/NinePieceImagePainter.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/NinePieceImagePainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp b/third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp
index 67b311bae667fc83913c960db29126c727c5568d..7e864ddde9dbf1ddffc1dc1e425a80a26dfab1b6 100644
--- a/third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp
+++ b/third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp
@@ -30,24 +30,28 @@ bool NinePieceImagePainter::paint(GraphicsContext& graphicsContext,
return false;
if (!styleImage->isLoaded())
- return true; // Never paint a nine-piece image incrementally, but don't paint the fallback borders either.
+ return true; // Never paint a nine-piece image incrementally, but don't
+ // paint the fallback borders either.
if (!styleImage->canRender())
return false;
- // FIXME: border-image is broken with full page zooming when tiling has to happen, since the tiling function
- // doesn't have any understanding of the zoom that is in effect on the tile.
+ // FIXME: border-image is broken with full page zooming when tiling has to
+ // happen, since the tiling function doesn't have any understanding of the
+ // zoom that is in effect on the tile.
LayoutRect rectWithOutsets = rect;
rectWithOutsets.expand(style.imageOutsets(ninePieceImage));
LayoutRect borderImageRect = rectWithOutsets;
- // NinePieceImage returns the image slices without effective zoom applied and thus we compute
- // the nine piece grid on top of the image in unzoomed coordinates.
+ // NinePieceImage returns the image slices without effective zoom applied and
+ // thus we compute the nine piece grid on top of the image in unzoomed
+ // coordinates.
//
- // FIXME: The default object size passed to imageSize() should be scaled by the zoom factor
- // passed in. In this case it means that borderImageRect should be passed in compensated by
- // effective zoom, since the scale factor is one. For generated images, the actual image data
- // (gradient stops, etc.) are scaled to effective zoom instead so we must take care not to cause
+ // FIXME: The default object size passed to imageSize() should be scaled by
+ // the zoom factor passed in. In this case it means that borderImageRect
+ // should be passed in compensated by effective zoom, since the scale factor
+ // is one. For generated images, the actual image data (gradient stops, etc.)
+ // are scaled to effective zoom instead so we must take care not to cause
// scale of them again.
IntSize imageSize = roundedIntSize(
styleImage->imageSize(m_layoutObject, 1, borderImageRect.size()));

Powered by Google App Engine
This is Rietveld 408576698