| Index: Source/core/paint/ImagePainter.cpp
|
| diff --git a/Source/core/paint/ImagePainter.cpp b/Source/core/paint/ImagePainter.cpp
|
| index a489276aa30d2c865089f2cf7f00109ae3135550..340c2e2ad0809db0be0e8b31dca020ca7cb37a47 100644
|
| --- a/Source/core/paint/ImagePainter.cpp
|
| +++ b/Source/core/paint/ImagePainter.cpp
|
| @@ -12,12 +12,12 @@
|
| #include "core/html/HTMLAreaElement.h"
|
| #include "core/html/HTMLImageElement.h"
|
| #include "core/layout/LayoutImage.h"
|
| +#include "core/layout/LayoutReplaced.h"
|
| #include "core/layout/PaintInfo.h"
|
| #include "core/layout/TextRunConstructor.h"
|
| #include "core/page/Page.h"
|
| #include "core/paint/BoxPainter.h"
|
| #include "core/paint/RenderDrawingRecorder.h"
|
| -#include "core/rendering/RenderReplaced.h"
|
| #include "platform/geometry/LayoutPoint.h"
|
| #include "platform/graphics/Path.h"
|
|
|
| @@ -25,7 +25,7 @@ namespace blink {
|
|
|
| void ImagePainter::paint(const PaintInfo& paintInfo, const LayoutPoint& paintOffset)
|
| {
|
| - m_layoutImage.RenderReplaced::paint(paintInfo, paintOffset);
|
| + m_layoutImage.LayoutReplaced::paint(paintInfo, paintOffset);
|
|
|
| if (paintInfo.phase == PaintPhaseOutline)
|
| paintAreaElementFocusRing(paintInfo);
|
|
|