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

Unified Diff: third_party/WebKit/public/platform/WebContentLayerClient.h

Issue 2387113002: reflow comments in public/platform/ (Closed)
Patch Set: nit 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/public/platform/WebContentLayerClient.h
diff --git a/third_party/WebKit/public/platform/WebContentLayerClient.h b/third_party/WebKit/public/platform/WebContentLayerClient.h
index 3b75b745a579bcda05b3198fed99b2f20b10b840..bbc2717e71a84b46335a344898a75880a6d0db37 100644
--- a/third_party/WebKit/public/platform/WebContentLayerClient.h
+++ b/third_party/WebKit/public/platform/WebContentLayerClient.h
@@ -42,7 +42,8 @@ class BLINK_PLATFORM_EXPORT WebContentLayerClient {
enum PaintingControlSetting {
// Returns the last PaintArtifact produced.
PaintDefaultBehavior,
- // Paints the content to simulate the behavior of FrameView::synchronizedPaint.
+ // Paints the content to simulate the behavior of
+ // FrameView::synchronizedPaint.
PaintDefaultBehaviorForTest,
// Puts the GraphicsContext in disabled mode and disables display item
// construction in PaintController.
@@ -53,17 +54,18 @@ class BLINK_PLATFORM_EXPORT WebContentLayerClient {
PartialInvalidation
};
- // The paintable region is the rectangular region, within the bounds of the layer
- // this client paints, that the client is capable of painting via paintContents().
- // Calling paintContents will return a WebDisplayitemList that is guaranteed valid
- // only within this region.
- // In particular, this is used to represent the interest rect in Blink.
+ // The paintable region is the rectangular region, within the bounds of the
+ // layer this client paints, that the client is capable of painting via
+ // paintContents(). Calling paintContents will return a WebDisplayitemList
+ // that is guaranteed valid only within this region. In particular, this is
+ // used to represent the interest rect in Blink.
virtual gfx::Rect paintableRegion() = 0;
// Paints the content area for the layer, typically dirty rects submitted
// through WebContentLayer::setNeedsDisplayInRect, submitting drawing commands
// to populate the WebDisplayItemList.
- // The |PaintingControlSetting| enum controls painting to isolate different components in performance tests.
+ // The |PaintingControlSetting| enum controls painting to isolate different
+ // components in performance tests.
virtual void paintContents(WebDisplayItemList*,
PaintingControlSetting = PaintDefaultBehavior) = 0;

Powered by Google App Engine
This is Rietveld 408576698