diff options
| author | Simon Hausmann <simon.hausmann@nokia.com> | 2012-07-23 09:28:44 +0200 |
|---|---|---|
| committer | Simon Hausmann <simon.hausmann@nokia.com> | 2012-07-23 09:28:44 +0200 |
| commit | 815f1ed417bd26fbe2abbdf20ac5d3423b30796c (patch) | |
| tree | 923c9a9e2834ccab60f5caecfb8f0ac410c1dd9e /Source/WebKit/chromium/public/WebView.h | |
| parent | b4ad5d9d2b96baacd0180ead50de5195ca78af2d (diff) | |
| download | qtwebkit-815f1ed417bd26fbe2abbdf20ac5d3423b30796c.tar.gz | |
Imported WebKit commit e65cbc5b6ac32627c797e7fc7f46eb7794410c92 (http://svn.webkit.org/repository/webkit/trunk@123308)
New snapshot with better configure tests
Diffstat (limited to 'Source/WebKit/chromium/public/WebView.h')
| -rw-r--r-- | Source/WebKit/chromium/public/WebView.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Source/WebKit/chromium/public/WebView.h b/Source/WebKit/chromium/public/WebView.h index 3ba5da24f..0085ba51a 100644 --- a/Source/WebKit/chromium/public/WebView.h +++ b/Source/WebKit/chromium/public/WebView.h @@ -52,6 +52,7 @@ class WebNode; class WebPageOverlay; class WebPermissionClient; class WebPrerendererClient; +class WebViewBenchmarkSupport; class WebRange; class WebSettings; class WebSpellCheckClient; @@ -196,6 +197,9 @@ public: // previous element in the tab sequence (if reverse is true). virtual void advanceFocus(bool reverse) { } + // Animate a scale into the specified find-in-page rect. + virtual void zoomToFindInPageRect(const WebRect&) = 0; + // Zoom ---------------------------------------------------------------- @@ -382,6 +386,8 @@ public: // Hides any popup (suggestions, selects...) that might be showing. virtual void hidePopups() = 0; + virtual void selectAutofillSuggestionAtIndex(unsigned listIndex) = 0; + // Context menu -------------------------------------------------------- @@ -446,10 +452,16 @@ public: virtual bool setEditableSelectionOffsets(int start, int end) = 0; + virtual bool isSelectionEditable() const = 0; + // Fills in a WebRenderingStats struct containing information about the state of the compositor. // This call is relatively expensive in threaded mode as it blocks on the compositor thread. virtual void renderingStats(WebRenderingStats&) const { } + // Benchmarking support -------------------------------------------- + + virtual WebViewBenchmarkSupport* benchmarkSupport() { return 0; } + // Visibility ----------------------------------------------------------- // Sets the visibility of the WebView. |
