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

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

Issue 923953002: Move rendering/RenderImage* to layout/LayoutImage* (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/page/PageSerializer.cpp ('k') | Source/core/paint/ImagePainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/core/page/PageSerializer.cpp ('k') | Source/core/paint/ImagePainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698