| Index: Source/core/rendering/RenderQuote.h
|
| diff --git a/Source/core/rendering/RenderQuote.h b/Source/core/rendering/RenderQuote.h
|
| index 3e2cb7417dde8733798fb7f934640001a3ae9237..81a96f4af16b77fc3d0b7fd3e8ba957a71c5a5bf 100644
|
| --- a/Source/core/rendering/RenderQuote.h
|
| +++ b/Source/core/rendering/RenderQuote.h
|
| @@ -43,7 +43,7 @@ private:
|
|
|
| virtual void willBeDestroyed() override;
|
| virtual const char* renderName() const override { return "RenderQuote"; };
|
| - virtual bool isOfType(RenderObjectType type) const override { return type == RenderObjectQuote || RenderInline::isOfType(type); }
|
| + virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectQuote || RenderInline::isOfType(type); }
|
| virtual void styleDidChange(StyleDifference, const RenderStyle*) override;
|
| virtual void willBeRemovedFromTree() override;
|
|
|
| @@ -63,7 +63,7 @@ private:
|
| String m_text;
|
| };
|
|
|
| -DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderQuote, isQuote());
|
| +DEFINE_LAYOUT_OBJECT_TYPE_CASTS(RenderQuote, isQuote());
|
|
|
| } // namespace blink
|
|
|
|
|