| Index: Source/core/html/HTMLFrameSetElement.h
|
| diff --git a/Source/core/html/HTMLFrameSetElement.h b/Source/core/html/HTMLFrameSetElement.h
|
| index f621f752a9e111f3fef7c9a033182c2e66bee285..d316fcd0b4a75b8ec072d50922342ad7db32affa 100644
|
| --- a/Source/core/html/HTMLFrameSetElement.h
|
| +++ b/Source/core/html/HTMLFrameSetElement.h
|
| @@ -30,7 +30,7 @@
|
|
|
| namespace blink {
|
|
|
| -class HTMLFrameSetElement FINAL : public HTMLElement {
|
| +class HTMLFrameSetElement final : public HTMLElement {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| DECLARE_NODE_FACTORY(HTMLFrameSetElement);
|
| @@ -60,18 +60,18 @@ public:
|
| private:
|
| explicit HTMLFrameSetElement(Document&);
|
|
|
| - virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
|
| - virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
|
| - virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
|
| + virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
|
| + virtual bool isPresentationAttribute(const QualifiedName&) const override;
|
| + virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
|
|
|
| - virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
|
| - virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE;
|
| - virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
|
| + virtual void attach(const AttachContext& = AttachContext()) override;
|
| + virtual bool rendererIsNeeded(const RenderStyle&) override;
|
| + virtual RenderObject* createRenderer(RenderStyle*) override;
|
|
|
| - virtual void defaultEventHandler(Event*) OVERRIDE;
|
| + virtual void defaultEventHandler(Event*) override;
|
|
|
| - virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
|
| - virtual void willRecalcStyle(StyleRecalcChange) OVERRIDE;
|
| + virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
|
| + virtual void willRecalcStyle(StyleRecalcChange) override;
|
|
|
| Vector<HTMLDimension> m_rowLengths;
|
| Vector<HTMLDimension> m_colLengths;
|
|
|