Index: Source/core/html/HTMLMediaElement.h |
diff --git a/Source/core/html/HTMLMediaElement.h b/Source/core/html/HTMLMediaElement.h |
index 0c5ef93861daab8264ca155ab8504945dbfddfcd..d59a3ffa964220d94c1dc55094072e1670ce0977 100644 |
--- a/Source/core/html/HTMLMediaElement.h |
+++ b/Source/core/html/HTMLMediaElement.h |
@@ -211,6 +211,7 @@ public: |
bool isFullscreen() const; |
void enterFullscreen(); |
void exitFullscreen(); |
+ virtual bool useOverlayFullscreenVideo() const { return false; } |
Xianzhu
2015/08/03 22:39:02
s/use/uses/.
watk
2015/08/03 23:36:48
Done.
|
bool hasClosedCaptions() const; |
bool closedCaptionsVisible() const; |
@@ -545,6 +546,8 @@ private: |
bool m_isFinalizing : 1; |
bool m_initialPlayWithoutUserGestures : 1; |
bool m_autoplayMediaCounted : 1; |
+ // Whether this element is in overlay fullscreen mode. |
+ bool m_inOverlayFullscreenVideo : 1; |
PersistentWillBeMember<AudioTrackList> m_audioTracks; |
PersistentWillBeMember<VideoTrackList> m_videoTracks; |