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

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

Issue 196793021: Ignore MediaController in the video fullscreen button logic (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 9 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
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;

Powered by Google App Engine
This is Rietveld 408576698