| Index: Source/core/layout/LayoutImage.h
 | 
| diff --git a/Source/core/layout/LayoutImage.h b/Source/core/layout/LayoutImage.h
 | 
| index bc1bd650237077d26e68a3109026fd79cb5b1609..513f05fcf21bf810f1f7d9f4f5bd4b5a00c3f759 100644
 | 
| --- a/Source/core/layout/LayoutImage.h
 | 
| +++ b/Source/core/layout/LayoutImage.h
 | 
| @@ -26,14 +26,14 @@
 | 
|  #define LayoutImage_h
 | 
|  
 | 
|  #include "core/layout/LayoutImageResource.h"
 | 
| -#include "core/rendering/RenderReplaced.h"
 | 
| +#include "core/layout/LayoutReplaced.h"
 | 
|  
 | 
|  namespace blink {
 | 
|  
 | 
|  class HTMLAreaElement;
 | 
|  class HTMLMapElement;
 | 
|  
 | 
| -class LayoutImage : public RenderReplaced {
 | 
| +class LayoutImage : public LayoutReplaced {
 | 
|  public:
 | 
|      // These are the paddings to use when displaying either alt text or an image.
 | 
|      static const unsigned short paddingWidth = 4;
 | 
| @@ -79,7 +79,7 @@ protected:
 | 
|      virtual void layout() override;
 | 
|      virtual bool updateImageLoadingPriorities() override final;
 | 
|  
 | 
| -    virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutImage || RenderReplaced::isOfType(type); }
 | 
| +    virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutImage || LayoutReplaced::isOfType(type); }
 | 
|  
 | 
|  private:
 | 
|      virtual const char* renderName() const override { return "LayoutImage"; }
 | 
| 
 |