| Index: Source/core/layout/LayoutSlider.h
|
| diff --git a/Source/core/layout/LayoutSlider.h b/Source/core/layout/LayoutSlider.h
|
| index 4f21d6942da6d5083bbe12be01f554e622906751..76c37e658f70b5da6505f421526dd416942fe366 100644
|
| --- a/Source/core/layout/LayoutSlider.h
|
| +++ b/Source/core/layout/LayoutSlider.h
|
| @@ -39,7 +39,7 @@ public:
|
|
|
| private:
|
| virtual const char* renderName() const override { return "LayoutSlider"; }
|
| - virtual bool isOfType(RenderObjectType type) const override { return type == RenderObjectSlider || RenderFlexibleBox::isOfType(type); }
|
| + virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSlider || RenderFlexibleBox::isOfType(type); }
|
|
|
| virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const override;
|
| virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, LayoutUnit& maxLogicalWidth) const override;
|
| @@ -48,7 +48,7 @@ private:
|
| SliderThumbElement* sliderThumbElement() const;
|
| };
|
|
|
| -DEFINE_RENDER_OBJECT_TYPE_CASTS(LayoutSlider, isSlider());
|
| +DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSlider, isSlider());
|
|
|
| } // namespace blink
|
|
|
|
|