Index: Source/core/rendering/RenderFrameSet.h |
diff --git a/Source/core/rendering/RenderFrameSet.h b/Source/core/rendering/RenderFrameSet.h |
index 21f90eac87ad9f34869908466045e6e1ff5d48dd..df5c385ce62c9ba6316cae9599369677a4051705 100644 |
--- a/Source/core/rendering/RenderFrameSet.h |
+++ b/Source/core/rendering/RenderFrameSet.h |
@@ -94,16 +94,16 @@ private: |
int m_splitResizeOffset; |
}; |
- virtual RenderObjectChildList* virtualChildren() { return children(); } |
- virtual const RenderObjectChildList* virtualChildren() const { return children(); } |
+ virtual RenderObjectChildList* virtualChildren() OVERRIDE { return children(); } |
+ virtual const RenderObjectChildList* virtualChildren() const OVERRIDE { return children(); } |
- virtual const char* renderName() const { return "RenderFrameSet"; } |
- virtual bool isFrameSet() const { return true; } |
+ virtual const char* renderName() const OVERRIDE { return "RenderFrameSet"; } |
+ virtual bool isFrameSet() const OVERRIDE { return true; } |
- virtual void layout(); |
- virtual void paint(PaintInfo&, const LayoutPoint&); |
- virtual bool isChildAllowed(RenderObject*, RenderStyle*) const; |
- virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const; |
+ virtual void layout() OVERRIDE; |
+ virtual void paint(PaintInfo&, const LayoutPoint&) OVERRIDE; |
+ virtual bool isChildAllowed(RenderObject*, RenderStyle*) const OVERRIDE; |
+ virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const OVERRIDE; |
inline HTMLFrameSetElement* frameSet() const; |