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

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

Issue 1993713002: Move line painting to BlockFlowPainter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Invoke BlockFlowPainter from BlockPainter instead. 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/paint/BlockFlowPainter.h
diff --git a/third_party/WebKit/Source/core/paint/BlockFlowPainter.h b/third_party/WebKit/Source/core/paint/BlockFlowPainter.h
index 47c76af8308890b4b9783414a0e35a30b676397d..bc244d76cbfffed38ab15181ecc4003b5fb758b6 100644
--- a/third_party/WebKit/Source/core/paint/BlockFlowPainter.h
+++ b/third_party/WebKit/Source/core/paint/BlockFlowPainter.h
@@ -17,7 +17,9 @@ class BlockFlowPainter {
STACK_ALLOCATED();
public:
BlockFlowPainter(const LayoutBlockFlow& layoutBlockFlow) : m_layoutBlockFlow(layoutBlockFlow) { }
+ void paintContents(const PaintInfo&, const LayoutPoint&);
void paintFloats(const PaintInfo&, const LayoutPoint&);
+
private:
const LayoutBlockFlow& m_layoutBlockFlow;
};
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutText.h ('k') | third_party/WebKit/Source/core/paint/BlockFlowPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698