Index: Source/core/html/shadow/MediaControlElementTypes.h |
diff --git a/Source/core/html/shadow/MediaControlElementTypes.h b/Source/core/html/shadow/MediaControlElementTypes.h |
index e80b9eb68a13e6f157ca1e37dea2dd5fca56673a..9e4198a662651cddbe22c16be4adb46405e086fe 100644 |
--- a/Source/core/html/shadow/MediaControlElementTypes.h |
+++ b/Source/core/html/shadow/MediaControlElementTypes.h |
@@ -78,6 +78,7 @@ class MediaControlElement : public WillBeGarbageCollectedMixin { |
public: |
void hide(); |
void show(); |
+ bool isShown(); |
MediaControlElementType displayType() { return m_displayType; } |
@@ -95,6 +96,7 @@ private: |
MediaControls& m_mediaControls; |
MediaControlElementType m_displayType; |
RawPtrWillBeMember<HTMLElement> m_element; |
+ bool m_isShown; |
}; |
// ---------------------------- |