diff options
Diffstat (limited to 'Source/WebKit/chromium/public/WebView.h')
| -rw-r--r-- | Source/WebKit/chromium/public/WebView.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/WebKit/chromium/public/WebView.h b/Source/WebKit/chromium/public/WebView.h index 542b1021a..c15298204 100644 --- a/Source/WebKit/chromium/public/WebView.h +++ b/Source/WebKit/chromium/public/WebView.h @@ -191,6 +191,10 @@ public: // window space. virtual void scrollFocusedNodeIntoRect(const WebRect&) { } + // Advance the focus of the WebView forward to the next element or to the + // previous element in the tab sequence (if reverse is true). + virtual void advanceFocus(bool reverse) { } + // Zoom ---------------------------------------------------------------- @@ -453,6 +457,8 @@ public: // by the compositor) but must be completed by the WebView. virtual void transferActiveWheelFlingAnimation(const WebActiveWheelFlingParameters&) = 0; + virtual bool setEditableSelectionOffsets(int start, int end) = 0; + // Visibility ----------------------------------------------------------- // Sets the visibility of the WebView. |
