| Index: Source/core/rendering/RenderFileUploadControl.h
|
| diff --git a/Source/core/rendering/RenderFileUploadControl.h b/Source/core/rendering/RenderFileUploadControl.h
|
| index 00aa894a2f268be7785a3435adf8f11eeb0f04ce..0fd349408d8eb87097a67efba9db3b32b3278710 100644
|
| --- a/Source/core/rendering/RenderFileUploadControl.h
|
| +++ b/Source/core/rendering/RenderFileUploadControl.h
|
| @@ -36,7 +36,7 @@ public:
|
| RenderFileUploadControl(HTMLInputElement*);
|
| virtual ~RenderFileUploadControl();
|
|
|
| - virtual bool isOfType(RenderObjectType type) const override { return type == RenderObjectFileUploadControl || RenderBlockFlow::isOfType(type); }
|
| + virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectFileUploadControl || RenderBlockFlow::isOfType(type); }
|
|
|
| String buttonValue();
|
| String fileTextValue() const;
|
| @@ -61,7 +61,7 @@ private:
|
| bool m_canReceiveDroppedFiles;
|
| };
|
|
|
| -DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderFileUploadControl, isFileUploadControl());
|
| +DEFINE_LAYOUT_OBJECT_TYPE_CASTS(RenderFileUploadControl, isFileUploadControl());
|
|
|
| } // namespace blink
|
|
|
|
|