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

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

Issue 930833003: Move and rename RenderReplaced and RenderHTMLCanvas to Layout{Replaced,HTMLCanvas}. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: No need to declare renderName() at all. 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/paint/ImagePainter.cpp ('k') | Source/core/paint/ReplacedPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/ReplacedPainter.h
diff --git a/Source/core/paint/ReplacedPainter.h b/Source/core/paint/ReplacedPainter.h
index e6705b44ca82bad98d65cc899315da96471aae7a..ed7a76ce21bda010618af44feef494a891329cb5 100644
--- a/Source/core/paint/ReplacedPainter.h
+++ b/Source/core/paint/ReplacedPainter.h
@@ -9,16 +9,16 @@ namespace blink {
struct PaintInfo;
class LayoutPoint;
-class RenderReplaced;
+class LayoutReplaced;
class ReplacedPainter {
public:
- ReplacedPainter(RenderReplaced& renderReplaced) : m_renderReplaced(renderReplaced) { }
+ ReplacedPainter(LayoutReplaced& layoutReplaced) : m_layoutReplaced(layoutReplaced) { }
void paint(const PaintInfo&, const LayoutPoint&);
private:
- RenderReplaced& m_renderReplaced;
+ LayoutReplaced& m_layoutReplaced;
};
} // namespace blink
« no previous file with comments | « Source/core/paint/ImagePainter.cpp ('k') | Source/core/paint/ReplacedPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698