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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayerPainter.h

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/PaintLayerPainter.h
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerPainter.h b/third_party/WebKit/Source/core/paint/PaintLayerPainter.h
index 7aeeeada7137495621cb01b5f449eb9badea015f..b767e7a5d41d579d0c8b88d959678c5574516c12 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerPainter.h
+++ b/third_party/WebKit/Source/core/paint/PaintLayerPainter.h
@@ -27,29 +27,34 @@ class CORE_EXPORT PaintLayerPainter {
public:
enum FragmentPolicy { AllowMultipleFragments, ForceSingleFragment };
- // When adding new values, must update the number of bits of PaintLayer::m_previousPaintingResult.
+ // When adding new values, must update the number of bits of
+ // PaintLayer::m_previousPaintingResult.
enum PaintResult {
- // The layer is fully painted. This includes cases that nothing needs painting
- // regardless of the paint rect.
+ // The layer is fully painted. This includes cases that nothing needs
+ // painting regardless of the paint rect.
FullyPainted,
- // Some part of the layer is out of the paint rect and may be not fully painted.
- // The results cannot be cached because they may change when paint rect changes.
+ // Some part of the layer is out of the paint rect and may be not fully
+ // painted. The results cannot be cached because they may change when paint
+ // rect changes.
MayBeClippedByPaintDirtyRect
};
PaintLayerPainter(PaintLayer& paintLayer) : m_paintLayer(paintLayer) {}
- // The paint() method paints the layers that intersect the damage rect from back to front.
- // paint() assumes that the caller will clip to the bounds of damageRect if necessary.
+ // The paint() method paints the layers that intersect the damage rect from
+ // back to front. paint() assumes that the caller will clip to the bounds of
+ // damageRect if necessary.
void paint(GraphicsContext&,
const LayoutRect& damageRect,
const GlobalPaintFlags = GlobalPaintNormalPhase,
PaintLayerFlags = 0);
- // paintLayer() assumes that the caller will clip to the bounds of the painting dirty if necessary.
+ // paintLayer() assumes that the caller will clip to the bounds of the
+ // painting dirty if necessary.
PaintResult paintLayer(GraphicsContext&,
const PaintLayerPaintingInfo&,
PaintLayerFlags);
- // paintLayerContents() assumes that the caller will clip to the bounds of the painting dirty rect if necessary.
+ // paintLayerContents() assumes that the caller will clip to the bounds of the
+ // painting dirty rect if necessary.
PaintResult paintLayerContents(GraphicsContext&,
const PaintLayerPaintingInfo&,
PaintLayerFlags,
@@ -129,8 +134,8 @@ class CORE_EXPORT PaintLayerPainter {
static bool needsToClip(const PaintLayerPaintingInfo& localPaintingInfo,
const ClipRect&);
- // Returns whether this layer should be painted during sofware painting (i.e., not via calls from CompositedLayerMapping to draw into composited
- // layers).
+ // Returns whether this layer should be painted during sofware painting (i.e.,
+ // not via calls from CompositedLayerMapping to draw into composited layers).
bool shouldPaintLayerInSoftwareMode(const GlobalPaintFlags,
PaintLayerFlags paintFlags);
« no previous file with comments | « third_party/WebKit/Source/core/paint/PaintLayerClipper.cpp ('k') | third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698