| Index: Source/core/rendering/RenderVideo.h
|
| diff --git a/Source/core/rendering/RenderVideo.h b/Source/core/rendering/RenderVideo.h
|
| index 927c49eb5536368a860a32752e9e43fa94148261..65f2e9eb740a079f379cd208180e8576a83fa366 100644
|
| --- a/Source/core/rendering/RenderVideo.h
|
| +++ b/Source/core/rendering/RenderVideo.h
|
| @@ -58,7 +58,7 @@ private:
|
|
|
| virtual const char* renderName() const override { return "RenderVideo"; }
|
|
|
| - virtual bool isOfType(RenderObjectType type) const override { return type == RenderObjectVideo || RenderMedia::isOfType(type); }
|
| + virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectVideo || RenderMedia::isOfType(type); }
|
|
|
| virtual void paintReplaced(const PaintInfo&, const LayoutPoint&) override;
|
|
|
| @@ -81,7 +81,7 @@ private:
|
| LayoutSize m_cachedImageSize;
|
| };
|
|
|
| -DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderVideo, isVideo());
|
| +DEFINE_LAYOUT_OBJECT_TYPE_CASTS(RenderVideo, isVideo());
|
|
|
| } // namespace blink
|
|
|
|
|