Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1383)

Unified Diff: Source/core/rendering/RenderVideo.h

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/rendering/RenderVTTCue.h ('k') | Source/core/rendering/RenderView.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderVideo.h
diff --git a/Source/core/rendering/RenderVideo.h b/Source/core/rendering/RenderVideo.h
index db9e19b3245d7b776ca0e69ad7cd7a5f8ac2a546..2a4a90f2b21df485582044545b82ee7eaec06e06 100644
--- a/Source/core/rendering/RenderVideo.h
+++ b/Source/core/rendering/RenderVideo.h
@@ -32,7 +32,7 @@ namespace blink {
class HTMLVideoElement;
-class RenderVideo FINAL : public RenderMedia {
+class RenderVideo final : public RenderMedia {
public:
RenderVideo(HTMLVideoElement*);
virtual ~RenderVideo();
@@ -48,32 +48,32 @@ public:
bool acceleratedRenderingInUse();
private:
- virtual void updateFromElement() OVERRIDE;
+ virtual void updateFromElement() override;
- virtual void intrinsicSizeChanged() OVERRIDE;
+ virtual void intrinsicSizeChanged() override;
LayoutSize calculateIntrinsicSize();
void updateIntrinsicSize();
- virtual void imageChanged(WrappedImagePtr, const IntRect*) OVERRIDE;
+ virtual void imageChanged(WrappedImagePtr, const IntRect*) override;
- virtual const char* renderName() const OVERRIDE { return "RenderVideo"; }
+ virtual const char* renderName() const override { return "RenderVideo"; }
- virtual bool isVideo() const OVERRIDE { return true; }
+ virtual bool isVideo() const override { return true; }
- virtual void paintReplaced(PaintInfo&, const LayoutPoint&) OVERRIDE;
+ virtual void paintReplaced(PaintInfo&, const LayoutPoint&) override;
- virtual void layout() OVERRIDE;
+ virtual void layout() override;
- virtual LayoutUnit computeReplacedLogicalWidth(ShouldComputePreferred = ComputeActual) const OVERRIDE;
- virtual LayoutUnit computeReplacedLogicalHeight() const OVERRIDE;
- virtual LayoutUnit minimumReplacedHeight() const OVERRIDE;
+ virtual LayoutUnit computeReplacedLogicalWidth(ShouldComputePreferred = ComputeActual) const override;
+ virtual LayoutUnit computeReplacedLogicalHeight() const override;
+ virtual LayoutUnit minimumReplacedHeight() const override;
- virtual LayoutUnit offsetLeft() const OVERRIDE;
- virtual LayoutUnit offsetTop() const OVERRIDE;
- virtual LayoutUnit offsetWidth() const OVERRIDE;
- virtual LayoutUnit offsetHeight() const OVERRIDE;
+ virtual LayoutUnit offsetLeft() const override;
+ virtual LayoutUnit offsetTop() const override;
+ virtual LayoutUnit offsetWidth() const override;
+ virtual LayoutUnit offsetHeight() const override;
- virtual CompositingReasons additionalCompositingReasons() const OVERRIDE;
+ virtual CompositingReasons additionalCompositingReasons() const override;
void updatePlayer();
« no previous file with comments | « Source/core/rendering/RenderVTTCue.h ('k') | Source/core/rendering/RenderView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698