Index: Source/core/html/HTMLMediaElement.h |
diff --git a/Source/core/html/HTMLMediaElement.h b/Source/core/html/HTMLMediaElement.h |
index ff834bbc591634b5ed972592a091bd75d8333fb5..e92a739072c712108e18257750cbba71de421007 100644 |
--- a/Source/core/html/HTMLMediaElement.h |
+++ b/Source/core/html/HTMLMediaElement.h |
@@ -85,7 +85,7 @@ public: |
blink::WebMediaPlayer* webMediaPlayer() const { return m_player ? m_player->webMediaPlayer() : 0; } |
virtual bool isVideo() const = 0; |
- virtual bool hasVideo() const OVERRIDE { return false; } |
+ virtual bool hasVideo() const { return false; } |
virtual bool hasAudio() const OVERRIDE FINAL; |
bool supportsSave() const; |
@@ -234,7 +234,7 @@ public: |
bool hasSingleSecurityOrigin() const { return !m_player || m_player->hasSingleSecurityOrigin(); } |
bool isFullscreen() const; |
- virtual void enterFullscreen() OVERRIDE FINAL; |
+ void enterFullscreen(); |
virtual bool hasClosedCaptions() const OVERRIDE FINAL; |
virtual bool closedCaptionsVisible() const OVERRIDE FINAL; |