diff options
Diffstat (limited to 'Source/WebKit/chromium/public/WebView.h')
| -rw-r--r-- | Source/WebKit/chromium/public/WebView.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/WebKit/chromium/public/WebView.h b/Source/WebKit/chromium/public/WebView.h index b778f296a..49aaa5138 100644 --- a/Source/WebKit/chromium/public/WebView.h +++ b/Source/WebKit/chromium/public/WebView.h @@ -48,16 +48,17 @@ class WebDragData; class WebFrame; class WebFrameClient; class WebGraphicsContext3D; +class WebHitTestResult; class WebNode; class WebPageOverlay; class WebPermissionClient; class WebPrerendererClient; -class WebViewBenchmarkSupport; class WebRange; class WebSettings; class WebSpellCheckClient; class WebString; class WebTextFieldDecoratorClient; +class WebViewBenchmarkSupport; class WebViewClient; struct WebActiveWheelFlingParameters; struct WebMediaPlayerAction; @@ -313,6 +314,9 @@ public: // Data exchange ------------------------------------------------------- + // Do a hit test at given point and return the HitTestResult. + virtual WebHitTestResult hitTestResultAt(const WebPoint&) = 0; + // Copy to the clipboard the image located at a particular point in the // WebView (if there is such an image) virtual void copyImageAt(const WebPoint&) = 0; |
