Searched refs:withKeyboard (Results 1 - 17 of 17) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundlePageFullScreenClient.h46 bool supportsFullScreen(WebPage*, bool withKeyboard);
H A DInjectedBundlePageFullScreenClient.cpp43 bool InjectedBundlePageFullScreenClient::supportsFullScreen(WebPage *page, bool withKeyboard) argument
46 return m_client.supportsFullScreen(toAPI(page), withKeyboard);
49 page->sendSync(Messages::WebFullScreenManagerProxy::SupportsFullScreen(withKeyboard), supports);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFullScreenManagerProxy.cpp102 void WebFullScreenManagerProxy::supportsFullScreen(bool withKeyboard, bool& supports) argument
104 if (withKeyboard)
H A DWebFullScreenManagerProxy.h88 void supportsFullScreen(bool withKeyboard, bool&);
/external/webkit/Source/WebKit2/WebProcess/FullScreen/
H A DWebFullScreenManager.cpp64 bool WebFullScreenManager::supportsFullScreen(bool withKeyboard) argument
69 return m_page->injectedBundleFullScreenClient().supportsFullScreen(m_page.get(), withKeyboard);
H A DWebFullScreenManager.h57 bool supportsFullScreen(bool withKeyboard);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebViewInternal.h194 - (BOOL)_supportsFullScreenForElement:(WebCore::Element*)element withKeyboard:(BOOL)withKeyboard;
H A DWebView.mm6207 - (BOOL)_supportsFullScreenForElement:(const WebCore::Element*)element withKeyboard:(BOOL)withKeyboard
6209 if (withKeyboard)
/external/webkit/Tools/DumpRenderTree/mac/
H A DUIDelegate.mm238 - (BOOL)webView:(WebView *)webView supportsFullScreenForElement:(DOMElement*)element withKeyboard:(BOOL)withKeyboard
/external/webkit/Source/WebKit/chromium/src/
H A DChromeClientImpl.h172 virtual bool supportsFullScreenForElement(const WebCore::Element*, bool withKeyboard);
H A DChromeClientImpl.cpp883 bool ChromeClientImpl::supportsFullScreenForElement(const WebCore::Element* element, bool withKeyboard) argument
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DChromeClientGtk.h148 virtual bool supportsFullScreenForElement(const WebCore::Element*, bool withKeyboard);
H A DChromeClientGtk.cpp726 bool ChromeClient::supportsFullScreenForElement(const WebCore::Element* element, bool withKeyboard) argument
728 if (withKeyboard)
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebChromeClient.h167 virtual bool supportsFullScreenForElement(const WebCore::Element*, bool withKeyboard);
H A DWebChromeClient.mm981 bool WebChromeClient::supportsFullScreenForElement(const Element* element, bool withKeyboard)
983 SEL selector = @selector(webView:supportsFullScreenForElement:withKeyboard:);
985 return CallUIDelegateReturningBoolean(false, m_webView, selector, kit(const_cast<WebCore::Element*>(element)), withKeyboard);
986 return [m_webView _supportsFullScreenForElement:const_cast<WebCore::Element*>(element) withKeyboard:withKeyboard];
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebChromeClient.h211 virtual bool supportsFullScreenForElement(const WebCore::Element*, bool withKeyboard);
H A DWebChromeClient.cpp715 bool WebChromeClient::supportsFullScreenForElement(const WebCore::Element* element, bool withKeyboard) argument
717 return m_page->fullScreenManager()->supportsFullScreen(withKeyboard);

Completed in 279 milliseconds