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

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

Issue 939273002: Rename rendering/RenderFieldset to layout/LayoutFieldset. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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/LayoutFieldset.cpp ('k') | Source/core/paint/FieldsetPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/FieldsetPainter.h
diff --git a/Source/core/paint/FieldsetPainter.h b/Source/core/paint/FieldsetPainter.h
index e08ec8d8d039bb4e0d02438ddfca49c254cfe52e..35ae86af65979421a1ba4fb09ca7d1b2bbd6bdb6 100644
--- a/Source/core/paint/FieldsetPainter.h
+++ b/Source/core/paint/FieldsetPainter.h
@@ -9,17 +9,17 @@ namespace blink {
struct PaintInfo;
class LayoutPoint;
-class RenderFieldset;
+class LayoutFieldset;
class FieldsetPainter {
public:
- FieldsetPainter(RenderFieldset& renderFieldset) : m_renderFieldset(renderFieldset) { }
+ FieldsetPainter(LayoutFieldset& layoutFieldset) : m_layoutFieldset(layoutFieldset) { }
void paintBoxDecorationBackground(const PaintInfo&, const LayoutPoint&);
void paintMask(const PaintInfo&, const LayoutPoint&);
private:
- RenderFieldset& m_renderFieldset;
+ LayoutFieldset& m_layoutFieldset;
};
} // namespace blink
« no previous file with comments | « Source/core/layout/LayoutFieldset.cpp ('k') | Source/core/paint/FieldsetPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698