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

Unified Diff: Source/core/paint/FrameSetPainter.h

Issue 929223003: Move and rename RenderFrame and RenderFrameSet. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « Source/core/layout/LayoutPart.h ('k') | Source/core/paint/FrameSetPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/FrameSetPainter.h
diff --git a/Source/core/paint/FrameSetPainter.h b/Source/core/paint/FrameSetPainter.h
index 98027a0ebd9ceb1ab7d69c61a8761a798a7b669f..434b2653844680ab8a05f504748c183572fa5fe3 100644
--- a/Source/core/paint/FrameSetPainter.h
+++ b/Source/core/paint/FrameSetPainter.h
@@ -9,12 +9,12 @@ namespace blink {
class IntRect;
struct PaintInfo;
+class LayoutFrameSet;
class LayoutPoint;
-class RenderFrameSet;
class FrameSetPainter {
public:
- FrameSetPainter(RenderFrameSet& renderFrameSet) : m_renderFrameSet(renderFrameSet) { }
+ FrameSetPainter(LayoutFrameSet& layoutFrameSet) : m_layoutFrameSet(layoutFrameSet) { }
void paint(const PaintInfo&, const LayoutPoint& paintOffset);
@@ -22,7 +22,7 @@ private:
void paintRowBorder(const PaintInfo&, const IntRect&);
void paintColumnBorder(const PaintInfo&, const IntRect&);
- RenderFrameSet& m_renderFrameSet;
+ LayoutFrameSet& m_layoutFrameSet;
};
} // namespace blink
« no previous file with comments | « Source/core/layout/LayoutPart.h ('k') | Source/core/paint/FrameSetPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698