Chromium Code Reviews| Index: content/browser/frame_host/render_frame_host_impl.h |
| diff --git a/content/browser/frame_host/render_frame_host_impl.h b/content/browser/frame_host/render_frame_host_impl.h |
| index d21b5e53e51d186ae8601490b2e6413f260ac0c3..f4acb4ac107c8da88e55294772a422ccf668c31b 100644 |
| --- a/content/browser/frame_host/render_frame_host_impl.h |
| +++ b/content/browser/frame_host/render_frame_host_impl.h |
| @@ -456,6 +456,10 @@ class CONTENT_EXPORT RenderFrameHostImpl |
| // before and after the selection or caret. |
| void ExtendSelectionAndDelete(size_t before, size_t after); |
| + // Deletes text before and after the current cursor position, excluding the |
| + // selection. |
| + void DeleteSurroundingText(int before, int after); |
|
clamy
2016/10/13 12:26:00
Change the ints into a size_t to match the functio
yabinh
2016/10/13 12:57:24
Done.
|
| + |
| // Notifies the RenderFrame that the JavaScript message that was shown was |
| // closed by the user. |
| void JavaScriptDialogClosed(IPC::Message* reply_msg, |