| Index: Source/core/layout/LayoutSliderThumb.h
|
| diff --git a/Source/core/layout/LayoutSliderThumb.h b/Source/core/layout/LayoutSliderThumb.h
|
| index f3bc72c9ad6c44d58e3dcffbe3528ac01d3969ab..7a2645d56b7a59d2bb31a84368dd28f62f2e679c 100644
|
| --- a/Source/core/layout/LayoutSliderThumb.h
|
| +++ b/Source/core/layout/LayoutSliderThumb.h
|
| @@ -45,10 +45,10 @@ public:
|
| void updateAppearance(RenderStyle* parentStyle);
|
|
|
| private:
|
| - virtual bool isOfType(RenderObjectType type) const override { return type == RenderObjectSliderThumb || RenderBlockFlow::isOfType(type); }
|
| + virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSliderThumb || RenderBlockFlow::isOfType(type); }
|
| };
|
|
|
| -DEFINE_RENDER_OBJECT_TYPE_CASTS(LayoutSliderThumb, isSliderThumb());
|
| +DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSliderThumb, isSliderThumb());
|
|
|
| } // namespace blink
|
|
|
|
|