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

Unified Diff: Source/core/html/HTMLVideoElement.h

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/html/HTMLUnknownElement.h ('k') | Source/core/html/HTMLViewSourceDocument.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLVideoElement.h
diff --git a/Source/core/html/HTMLVideoElement.h b/Source/core/html/HTMLVideoElement.h
index 6f2818a50ee9a611d7cce719d608a97c40fda53a..aa3a9c63b66fba99c7a66b5b048324ccb0b6e6c2 100644
--- a/Source/core/html/HTMLVideoElement.h
+++ b/Source/core/html/HTMLVideoElement.h
@@ -46,11 +46,11 @@ class GraphicsContext;
typedef unsigned GLenum;
typedef int GC3Dint;
-class HTMLVideoElement FINAL : public HTMLMediaElement, public CanvasImageSource {
+class HTMLVideoElement final : public HTMLMediaElement, public CanvasImageSource {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<HTMLVideoElement> create(Document&);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
unsigned videoWidth() const;
unsigned videoHeight() const;
@@ -77,35 +77,35 @@ public:
KURL posterImageURL() const;
// FIXME: Remove this when WebMediaPlayerClientImpl::loadInternal does not depend on it.
- virtual KURL mediaPlayerPosterURL() OVERRIDE;
+ virtual KURL mediaPlayerPosterURL() override;
// CanvasImageSource implementation
- virtual PassRefPtr<Image> getSourceImageForCanvas(SourceImageMode, SourceImageStatus*) const OVERRIDE;
- virtual bool isVideoElement() const OVERRIDE { return true; }
- virtual bool wouldTaintOrigin(SecurityOrigin*) const OVERRIDE;
- virtual FloatSize sourceSize() const OVERRIDE;
- virtual const KURL& sourceURL() const OVERRIDE { return currentSrc(); }
+ virtual PassRefPtr<Image> getSourceImageForCanvas(SourceImageMode, SourceImageStatus*) const override;
+ virtual bool isVideoElement() const override { return true; }
+ virtual bool wouldTaintOrigin(SecurityOrigin*) const override;
+ virtual FloatSize sourceSize() const override;
+ virtual const KURL& sourceURL() const override { return currentSrc(); }
- virtual bool isHTMLVideoElement() const OVERRIDE { return true; }
+ virtual bool isHTMLVideoElement() const override { return true; }
private:
HTMLVideoElement(Document&);
- virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE;
- virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
- virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
- virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
- virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
- virtual bool hasVideo() const OVERRIDE { return webMediaPlayer() && webMediaPlayer()->hasVideo(); }
+ virtual bool rendererIsNeeded(const RenderStyle&) override;
+ virtual RenderObject* createRenderer(RenderStyle*) override;
+ virtual void attach(const AttachContext& = AttachContext()) override;
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ virtual bool isPresentationAttribute(const QualifiedName&) const override;
+ virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
+ virtual bool hasVideo() const override { return webMediaPlayer() && webMediaPlayer()->hasVideo(); }
bool supportsFullscreen() const;
- virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
- virtual const AtomicString imageSourceURL() const OVERRIDE;
+ virtual bool isURLAttribute(const Attribute&) const override;
+ virtual const AtomicString imageSourceURL() const override;
bool hasAvailableVideoFrame() const;
- virtual void updateDisplayState() OVERRIDE;
- virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE;
- virtual void setDisplayMode(DisplayMode) OVERRIDE;
+ virtual void updateDisplayState() override;
+ virtual void didMoveToNewDocument(Document& oldDocument) override;
+ virtual void setDisplayMode(DisplayMode) override;
OwnPtrWillBeMember<HTMLImageLoader> m_imageLoader;
« no previous file with comments | « Source/core/html/HTMLUnknownElement.h ('k') | Source/core/html/HTMLViewSourceDocument.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698