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

Unified Diff: third_party/WebKit/Source/core/paint/FramePainter.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/FramePainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/FramePainter.cpp b/third_party/WebKit/Source/core/paint/FramePainter.cpp
index 0201869428f5b2e7e24f7a9f24f10b06c3de33b8..a1f9c02187b2a19f3bdbc4436a8e72b8bc9d349f 100644
--- a/third_party/WebKit/Source/core/paint/FramePainter.cpp
+++ b/third_party/WebKit/Source/core/paint/FramePainter.cpp
@@ -125,12 +125,13 @@ void FramePainter::paintContents(GraphicsContext& context,
return;
}
- // TODO(crbug.com/590856): It's still broken when we choose not to crash when the check fails.
+ // TODO(crbug.com/590856): It's still broken when we choose not to crash when
+ // the check fails.
if (!frameView().checkDoesNotNeedLayout())
return;
- // TODO(wangxianzhu): The following check should be stricter, but currently this is blocked
- // by the svg root issue (crbug.com/442939).
+ // TODO(wangxianzhu): The following check should be stricter, but currently
+ // this is blocked by the svg root issue (crbug.com/442939).
DCHECK(document->lifecycle().state() >= DocumentLifecycle::CompositingClean);
TRACE_EVENT1("devtools.timeline,rail", "Paint", "data",
@@ -168,7 +169,8 @@ void FramePainter::paintContents(GraphicsContext& context,
layerPainter.paintOverlayScrollbars(context, LayoutRect(rect),
localPaintFlags);
- // Regions may have changed as a result of the visibility/z-index of element changing.
+ // Regions may have changed as a result of the visibility/z-index of element
+ // changing.
if (document->annotatedRegionsDirty())
frameView().updateDocumentAnnotatedRegions();
« no previous file with comments | « third_party/WebKit/Source/core/paint/FilterPainter.cpp ('k') | third_party/WebKit/Source/core/paint/FrameSetPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698