Index: Source/core/paint/ImagePainter.h |
diff --git a/Source/core/paint/ImagePainter.h b/Source/core/paint/ImagePainter.h |
index f6ed2866355a799c657349f1cc7cddb0c3425340..7383afc86617bb7123adda5cc439ad952e14159a 100644 |
--- a/Source/core/paint/ImagePainter.h |
+++ b/Source/core/paint/ImagePainter.h |
@@ -11,11 +11,11 @@ class GraphicsContext; |
struct PaintInfo; |
class LayoutPoint; |
class LayoutRect; |
-class RenderImage; |
+class LayoutImage; |
class ImagePainter { |
public: |
- ImagePainter(RenderImage& renderImage) : m_renderImage(renderImage) { } |
+ ImagePainter(LayoutImage& layoutImage) : m_layoutImage(layoutImage) { } |
void paint(const PaintInfo&, const LayoutPoint& paintOffset); |
void paintReplaced(const PaintInfo&, const LayoutPoint& paintOffset); |
@@ -24,7 +24,7 @@ public: |
private: |
void paintAreaElementFocusRing(const PaintInfo&); |
- RenderImage& m_renderImage; |
+ LayoutImage& m_layoutImage; |
}; |
} // namespace blink |