Chromium Code Reviews| 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 5b3d907d5ffb46b048a7d4a041613c2bdcd56260..65bd0fa8b1b41b0596b87b51d5f433904ac9ee30 100644 |
| --- a/third_party/WebKit/public/web/WebFrame.h |
| +++ b/third_party/WebKit/public/web/WebFrame.h |
| @@ -459,6 +459,7 @@ public: |
| virtual bool setEditableSelectionOffsets(int start, int end) = 0; |
| virtual bool setCompositionFromExistingText(int compositionStart, int compositionEnd, const WebVector<WebCompositionUnderline>& underlines) = 0; |
| virtual void extendSelectionAndDelete(int before, int after) = 0; |
| + virtual void deleteSurroundingText(int before, int after) = 0; |
|
dcheng
2016/04/16 03:37:07
This doesn't look relevant to remote frames: can w
aelias_OOO_until_Jul13
2016/04/16 03:43:29
Why do you say that? Remote frames can have textb
dcheng
2016/04/16 03:53:39
In that case, the request should have been routed
|
| virtual void setCaretVisible(bool) = 0; |