Index: Source/core/html/HTMLMediaElement.h |
diff --git a/Source/core/html/HTMLMediaElement.h b/Source/core/html/HTMLMediaElement.h |
index f04afe2d23c2080a9295521cbb135ad035066d2c..65d5f0b06a6905c26c03748ddf07f1e86d94d87d 100644 |
--- a/Source/core/html/HTMLMediaElement.h |
+++ b/Source/core/html/HTMLMediaElement.h |
@@ -84,7 +84,7 @@ public: |
MediaPlayer* player() const { return m_player.get(); } |
blink::WebMediaPlayer* webMediaPlayer() const { return m_player ? m_player->webMediaPlayer() : 0; } |
- virtual bool hasVideo() const OVERRIDE { return false; } |
+ virtual bool hasVideo() const { return false; } |
virtual bool hasAudio() const OVERRIDE FINAL; |
bool supportsSave() const; |
@@ -233,7 +233,7 @@ public: |
bool hasSingleSecurityOrigin() const { return !m_player || m_player->hasSingleSecurityOrigin(); } |
bool isFullscreen() const; |
- virtual void enterFullscreen() OVERRIDE FINAL; |
+ void enterFullscreen(); |
bool hasClosedCaptions() const; |
bool closedCaptionsVisible() const; |