| Index: Source/core/html/HTMLBRElement.h
|
| diff --git a/Source/core/html/HTMLBRElement.h b/Source/core/html/HTMLBRElement.h
|
| index 0188c71bd41e0a43c8dc6456b8a0219663480363..483e5cd4f267e9d3248b400798a47dbd4fac0917 100644
|
| --- a/Source/core/html/HTMLBRElement.h
|
| +++ b/Source/core/html/HTMLBRElement.h
|
| @@ -32,7 +32,7 @@ class HTMLBRElement FINAL : public HTMLElement {
|
| public:
|
| static PassRefPtr<HTMLBRElement> create(Document&);
|
|
|
| - virtual bool canContainRangeEndPoint() const { return false; }
|
| + virtual bool canContainRangeEndPoint() const OVERRIDE { return false; }
|
|
|
| private:
|
| explicit HTMLBRElement(Document&);
|
| @@ -40,7 +40,7 @@ private:
|
| virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
|
| virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
|
|
|
| - virtual RenderObject* createRenderer(RenderStyle*);
|
| + virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
|
| };
|
|
|
| } // namespace
|
|
|