diff options
Diffstat (limited to 'WebKit/mac/WebView/WebViewInternal.h')
-rw-r--r-- | WebKit/mac/WebView/WebViewInternal.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/WebKit/mac/WebView/WebViewInternal.h b/WebKit/mac/WebView/WebViewInternal.h index 0a6f462..555c4d1 100644 --- a/WebKit/mac/WebView/WebViewInternal.h +++ b/WebKit/mac/WebView/WebViewInternal.h @@ -39,10 +39,12 @@ #include <wtf/Forward.h> namespace WebCore { + class Element; class Frame; class KURL; class KeyboardEvent; class Page; + class RenderBox; class Node; } #endif @@ -185,6 +187,13 @@ namespace WebCore { - (void)_exitFullscreen; #endif +#if ENABLE(FULLSCREEN_API) && defined(__cplusplus) +- (BOOL)_supportsFullScreenForElement:(WebCore::Element*)element; +- (void)_enterFullScreenForElement:(WebCore::Element*)element; +- (void)_exitFullScreenForElement:(WebCore::Element*)element; +- (void)_fullScreenRendererChanged:(WebCore::RenderBox*)renderer; +#endif + - (JSValueRef)_computedStyleIncludingVisitedInfo:(JSContextRef)context forElement:(JSValueRef)value; @end |