| Index: Source/core/rendering/RenderMedia.h
|
| diff --git a/Source/core/rendering/RenderMedia.h b/Source/core/rendering/RenderMedia.h
|
| index 48b852edf1e4da5b002b26147e069a1abbe80dcc..4e63f947fde5fcb732cff2d7e6f4bade2e5ad1c3 100644
|
| --- a/Source/core/rendering/RenderMedia.h
|
| +++ b/Source/core/rendering/RenderMedia.h
|
| @@ -52,16 +52,16 @@ protected:
|
| virtual void layout();
|
|
|
| private:
|
| - virtual RenderObjectChildList* virtualChildren() { return children(); }
|
| - virtual const RenderObjectChildList* virtualChildren() const { return children(); }
|
| - virtual bool canHaveChildren() const { return true; }
|
| + virtual RenderObjectChildList* virtualChildren() OVERRIDE FINAL { return children(); }
|
| + virtual const RenderObjectChildList* virtualChildren() const OVERRIDE FINAL { return children(); }
|
| + virtual bool canHaveChildren() const OVERRIDE FINAL { return true; }
|
|
|
| virtual const char* renderName() const { return "RenderMedia"; }
|
| - virtual bool isMedia() const { return true; }
|
| - virtual bool isImage() const { return false; }
|
| + virtual bool isMedia() const OVERRIDE FINAL { return true; }
|
| + virtual bool isImage() const OVERRIDE FINAL { return false; }
|
| virtual void paintReplaced(PaintInfo&, const LayoutPoint&);
|
|
|
| - virtual bool requiresForcedStyleRecalcPropagation() const { return true; }
|
| + virtual bool requiresForcedStyleRecalcPropagation() const OVERRIDE FINAL { return true; }
|
|
|
| RenderObjectChildList m_children;
|
| };
|
|
|