diff options
Diffstat (limited to 'Source/WebKit2/UIProcess/WebFullScreenManagerProxy.cpp')
-rw-r--r-- | Source/WebKit2/UIProcess/WebFullScreenManagerProxy.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebKit2/UIProcess/WebFullScreenManagerProxy.cpp b/Source/WebKit2/UIProcess/WebFullScreenManagerProxy.cpp index 9dc13bcc9..fe71ecaa4 100644 --- a/Source/WebKit2/UIProcess/WebFullScreenManagerProxy.cpp +++ b/Source/WebKit2/UIProcess/WebFullScreenManagerProxy.cpp @@ -94,9 +94,9 @@ void WebFullScreenManagerProxy::requestExitFullScreen() m_page->process()->send(Messages::WebFullScreenManager::RequestExitFullScreen(), m_page->pageID()); } -void WebFullScreenManagerProxy::supportsFullScreen(bool /*withKeyboard*/, bool& supports) +void WebFullScreenManagerProxy::supportsFullScreen(bool withKeyboard, bool& supports) { - supports = true; + supports = !withKeyboard; } } // namespace WebKit |