Index: content/browser/renderer_host/render_widget_host_impl.h |
diff --git a/content/browser/renderer_host/render_widget_host_impl.h b/content/browser/renderer_host/render_widget_host_impl.h |
index f4ed16aa32154ed941c1d8b470f27c05a85e2504..b9556a41ace2fe0e9b2d7c8c411f446b0d173e5c 100644 |
--- a/content/browser/renderer_host/render_widget_host_impl.h |
+++ b/content/browser/renderer_host/render_widget_host_impl.h |
@@ -295,6 +295,10 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost, |
// Cancels an ongoing composition. |
void ImeCancelComposition(); |
+ // Deletes the current selection plus the specified number of characters |
+ // before and after the selection or caret. |
+ void ExtendSelectionAndDelete(int before, int after); |
Seigo Nonaka
2012/09/14 04:21:03
|before| and |after| can be negative? Please add d
horo
2012/09/14 04:34:50
Done.
|
+ |
// This is for derived classes to give us access to the resizer rect. |
// And to also expose it to the RenderWidgetHostView. |
virtual gfx::Rect GetRootWindowResizerRect() const; |