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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutBlock.h

Issue 1993713002: Move line painting to BlockFlowPainter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/layout/LayoutBlock.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutBlock.h b/third_party/WebKit/Source/core/layout/LayoutBlock.h
index 483b1a38a4c12101b60576d971fcba799bdb1dc8..3b054cf247b504755b7f2175bdbaf0827f8bfffe 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBlock.h
+++ b/third_party/WebKit/Source/core/layout/LayoutBlock.h
@@ -302,9 +302,7 @@ protected:
public:
virtual void paintObject(const PaintInfo&, const LayoutPoint&) const;
virtual void paintChildren(const PaintInfo&, const LayoutPoint&) const;
-
- // FIXME-BLOCKFLOW: Remove virtualization when all callers have moved to LayoutBlockFlow
- virtual void paintFloats(const PaintInfo&, const LayoutPoint&) const { }
+ virtual void paintContentsAndFloats(const PaintInfo&, const LayoutPoint&) const;
protected:
virtual void adjustInlineDirectionLineBounds(unsigned /* expansionOpportunityCount */, LayoutUnit& /* logicalLeft */, LayoutUnit& /* logicalWidth */) const { }

Powered by Google App Engine
This is Rietveld 408576698