| Index: Source/core/html/HTMLFrameElement.h
|
| diff --git a/Source/core/html/HTMLFrameElement.h b/Source/core/html/HTMLFrameElement.h
|
| index a1652007a3236c00fb0b4dfa9eba6b894907fe43..42dedf81f1c6bc86ed6d8a722da7ed1bba250d79 100644
|
| --- a/Source/core/html/HTMLFrameElement.h
|
| +++ b/Source/core/html/HTMLFrameElement.h
|
| @@ -40,12 +40,12 @@ public:
|
| private:
|
| explicit HTMLFrameElement(Document&);
|
|
|
| - virtual void attach(const AttachContext& = AttachContext()) override;
|
| + void attach(const AttachContext& = AttachContext()) override;
|
|
|
| - virtual bool layoutObjectIsNeeded(const ComputedStyle&) override;
|
| - virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
|
| + bool layoutObjectIsNeeded(const ComputedStyle&) override;
|
| + LayoutObject* createLayoutObject(const ComputedStyle&) override;
|
|
|
| - virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
|
| + void parseAttribute(const QualifiedName&, const AtomicString&) override;
|
|
|
| bool m_frameBorder;
|
| bool m_frameBorderSet;
|
|
|