| Index: third_party/WebKit/public/web/WebFrame.h
|
| diff --git a/third_party/WebKit/public/web/WebFrame.h b/third_party/WebKit/public/web/WebFrame.h
|
| index 52c488bd0a7c8b14f70c5e8272b708c65c5dcbdb..6dafc99d1a16bbf11c84398288abc375ee667f16 100644
|
| --- a/third_party/WebKit/public/web/WebFrame.h
|
| +++ b/third_party/WebKit/public/web/WebFrame.h
|
| @@ -541,6 +541,14 @@ public:
|
| // Returns true if selection.anchorNode has a marker on range from |from| with |length|.
|
| virtual bool selectionStartHasSpellingMarkerFor(int from, int length) const = 0;
|
|
|
| + // Copy to the clipboard the image located at a particular point in visual
|
| + // viewport coordinates.
|
| + virtual void copyImageAt(const WebPoint&) = 0;
|
| +
|
| + // Save as the image located at a particular point in visual viewport
|
| + // coordinates.
|
| + virtual void saveImageAt(const WebPoint&) = 0;
|
| +
|
| // Dumps the layer tree, used by the accelerated compositor, in
|
| // text form. This is used only by layout tests.
|
| virtual WebString layerTreeAsText(bool showDebugInfo = false) const = 0;
|
|
|