| Index: Source/core/rendering/RenderSearchField.h
|
| diff --git a/Source/core/rendering/RenderSearchField.h b/Source/core/rendering/RenderSearchField.h
|
| index 34774cf0186ceeb7dcef5f61a2213c189e19edca..206af646fd34602b04f11c4514b3cb9cdbbaf852 100644
|
| --- a/Source/core/rendering/RenderSearchField.h
|
| +++ b/Source/core/rendering/RenderSearchField.h
|
| @@ -29,15 +29,15 @@ namespace blink {
|
|
|
| class HTMLInputElement;
|
|
|
| -class RenderSearchField FINAL : public RenderTextControlSingleLine {
|
| +class RenderSearchField final : public RenderTextControlSingleLine {
|
| public:
|
| RenderSearchField(HTMLInputElement*);
|
| virtual ~RenderSearchField();
|
|
|
| private:
|
| - virtual void centerContainerIfNeeded(RenderBox*) const OVERRIDE;
|
| - virtual LayoutUnit computeControlLogicalHeight(LayoutUnit lineHeight, LayoutUnit nonContentHeight) const OVERRIDE;
|
| - virtual LayoutUnit computeLogicalHeightLimit() const OVERRIDE;
|
| + virtual void centerContainerIfNeeded(RenderBox*) const override;
|
| + virtual LayoutUnit computeControlLogicalHeight(LayoutUnit lineHeight, LayoutUnit nonContentHeight) const override;
|
| + virtual LayoutUnit computeLogicalHeightLimit() const override;
|
|
|
| Element* searchDecorationElement() const;
|
| Element* cancelButtonElement() const;
|
|
|