Chromium Code Reviews| 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..5dea43512a079de79b8ac525d4a6b90a1a622a97 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 expand selection by the given |
| + // amounts. |
| + virtual void ExpandSelectionByCharacterOffset(int start_adjust, |
| + int end_adjust) = 0; |
|
Charlie Reis
2015/07/06 21:30:41
Is it possible for this to cross a frame boundary?
|
| + |
| #if defined(OS_ANDROID) |
| // Selects and zooms to the find result nearest to the point (x,y) |
| // defined in find-in-page coordinates. |