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

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 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;
« no previous file with comments | « LayoutTests/media/video-enter-fullscreen-without-user-gesture.html ('k') | Source/core/html/MediaController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698