diff options
Diffstat (limited to 'WebCore/html/HTMLVideoElement.h')
-rw-r--r-- | WebCore/html/HTMLVideoElement.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/WebCore/html/HTMLVideoElement.h b/WebCore/html/HTMLVideoElement.h index 834ec4c..a5c005c 100644 --- a/WebCore/html/HTMLVideoElement.h +++ b/WebCore/html/HTMLVideoElement.h @@ -64,6 +64,12 @@ public: const KURL& poster() const { return m_posterURL; } void setPoster(const String&); +// fullscreen + void webkitEnterFullScreen(bool isUserGesture, ExceptionCode&); + void webkitExitFullScreen(); + bool webkitSupportsFullscreen(); + bool webkitDisplayingFullscreen(); + void updatePosterImage(); bool shouldDisplayPosterImage() const { return m_shouldDisplayPosterImage; } |