Chromium Code Reviews| Index: public/web/WebView.h |
| diff --git a/public/web/WebView.h b/public/web/WebView.h |
| index be2c85b3630e88cbe3437f33e739de3b84ae9d6a..0fb3f4348433c0e3afbe0e226c8fc58cf6dad011 100644 |
| --- a/public/web/WebView.h |
| +++ b/public/web/WebView.h |
| @@ -49,6 +49,7 @@ class WebCredentialManagerClient; |
| class WebDragData; |
| class WebFrame; |
| class WebHitTestResult; |
| +class WebNode; |
| class WebPageOverlay; |
| class WebPrerendererClient; |
| class WebSettings; |
| @@ -329,6 +330,10 @@ public: |
| // WebView (if there is such an image) |
| virtual void saveImageAt(const WebPoint&) = 0; |
| + // Reload the image located at a particular point in the |
| + // WebView (if there is such an image) |
| + virtual void reloadImageAt(const WebNode&) = 0; |
|
Nate Chapin
2015/05/05 22:03:49
This should probably just be reloadImage() now. It
megjablon
2015/05/06 18:33:02
Done.
|
| + |
| // Notifies the WebView that a drag has terminated. |
| virtual void dragSourceEndedAt( |
| const WebPoint& clientPoint, const WebPoint& screenPoint, |