| 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 f3f6f2610143c0b1b604442ece2d530f6e55b83e..5f0e686bd738a8d1435a0cf7660979509ab80184 100644
|
| --- a/content/public/browser/render_view_host.h
|
| +++ b/content/public/browser/render_view_host.h
|
| @@ -265,6 +265,16 @@ class CONTENT_EXPORT RenderViewHost : virtual public RenderWidgetHost {
|
| // Passes a list of Webkit preferences to the renderer.
|
| virtual void UpdateWebkitPreferences(
|
| const webkit_glue::WebPreferences& prefs) = 0;
|
| +
|
| +#if defined(OS_ANDROID)
|
| + // Selects and zooms to the find result nearest to the point (x,y)
|
| + // defined in find-in-page coordinates.
|
| + virtual void ActivateNearestFindResult(int request_id, float x, float y) = 0;
|
| +
|
| + // Asks the renderer to send the rects of the current find matches.
|
| + virtual void RequestFindMatchRects(int current_version) = 0;
|
| +#endif
|
| +
|
| };
|
|
|
| } // namespace content
|
|
|