Index: content/public/browser/render_view_host.h |
diff --git a/content/public/browser/render_view_host.h b/content/public/browser/render_view_host.h |
index 5909d286f41fde172a1777fa6976dd944886645b..b4914b060e5af90550effe4cc127b04584887283 100644 |
--- a/content/public/browser/render_view_host.h |
+++ b/content/public/browser/render_view_host.h |
@@ -197,6 +197,11 @@ class CONTENT_EXPORT RenderViewHost : virtual public RenderWidgetHost { |
// Notify the render view host to select the word around the caret. |
virtual void SelectWordAroundCaret() = 0; |
+ // Notify the render view host to adjust the current selection by the given |
+ // amounts. |
+ virtual void MoveSelectionByCharacterOffset(int start_adjust, |
+ int end_adjust) = 0; |
+ |
#if defined(OS_ANDROID) |
// Selects and zooms to the find result nearest to the point (x,y) |
// defined in find-in-page coordinates. |