diff options
Diffstat (limited to 'Source/WebKit2/UIProcess/WebUIClient.h')
-rw-r--r-- | Source/WebKit2/UIProcess/WebUIClient.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/WebKit2/UIProcess/WebUIClient.h b/Source/WebKit2/UIProcess/WebUIClient.h index 8fcf7b6..196574a 100644 --- a/Source/WebKit2/UIProcess/WebUIClient.h +++ b/Source/WebKit2/UIProcess/WebUIClient.h @@ -56,6 +56,10 @@ public: void showPage(WebPageProxy*); void close(WebPageProxy*); + void takeFocus(WebPageProxy*, WKFocusDirection); + void focus(WebPageProxy*); + void unfocus(WebPageProxy*); + void runJavaScriptAlert(WebPageProxy*, const String&, WebFrameProxy*); bool runJavaScriptConfirm(WebPageProxy*, const String&, WebFrameProxy*); String runJavaScriptPrompt(WebPageProxy*, const String&, const String&, WebFrameProxy*); @@ -63,6 +67,8 @@ public: void setStatusText(WebPageProxy*, const String&); void mouseDidMoveOverElement(WebPageProxy*, WebEvent::Modifiers, APIObject*); void missingPluginButtonClicked(WebPageProxy*, const String& mimeType, const String& url, const String& pluginsPageURL); + + bool implementsDidNotHandleKeyEvent() const; void didNotHandleKeyEvent(WebPageProxy*, const NativeWebKeyboardEvent&); bool toolbarsAreVisible(WebPageProxy*); |